This item has closed 1 buyer bought 1 item
View other items offered by BotShop3177

Similar products

RF 433MHZ Receiver Module ZR4
Sold

RF 433MHZ Receiver Module ZR4

New 8 were available
R30.38
Shipping
R65.00 Standard shipping applies to orders under R100.00, in most areas in South Africa. R35.00 Standard shipping applies to orders over R100.00. Some areas may attract a surcharge surcharge. This will be calculated at checkout if applicable.
Check my rate
The seller has indicated that they will usually have this item ready to ship within 3 business days. Shipping time depends on your delivery address. The most accurate delivery time will be calculated at checkout, but in general, the following shipping times apply:
 
Standard Delivery
Main centres:  1-3 business days
Regional areas: 3-4 business days
Remote areas: 3-5 business days
Buyer protection
Get it now, pay later

Product details

Condition
New
Location
South Africa
Product code
MOD-162
Bob Shop ID
560389293

RF 433MHZ Receiver Module ZR4

The RF 433MHZ Receiver Module ZR4 receiver works great with the RF 433MHZ Transmitter Module ZF-3 module on our site.

1Operating Frequency433MHz
2Operating VoltageDC5V0.3V
3Operating Current2mA
4Modulation ModeASK
5RF Sensibility-108dBm
6Output LevelTTL level
7Operating Temp-20 C ~ +60 C
8Dimension17.5mm*11 mm*9mm

 

RF 433MHZ Receiver Module ZR4 Application Environment:
Remote control switch, receiver module, motorcycles, automobile, anti-theft products, home security products, electric doors, shutter doors, windows, remote control socket, remote control LED, remote audio remote control electric doors, garage door remote control, remote control retractable doors, remote volume gate, pan doors, remote control door opener, door closing device control system, remote control curtains, alarm host, alarms.

Example Sketch & Diagram

Library: rc-switch-master.zip

 

F8T43EWHM8DG3Q4.MEDIUM

Code

#include <RCSwitch.h>RCSwitch mySwitch = RCSwitch();void setup() { Serial.begin(9600); mySwitch.enableReceive(0);}void loop() { if (mySwitch.available()) {  int value = mySwitch.getReceivedValue();  if (value == 0) { Serial.print("Unknown encoding"); } else { Serial.print("Received "); Serial.print( mySwitch.getReceivedValue() ); Serial.print(" / "); Serial.print( mySwitch.getReceivedBitlength() ); Serial.print("bit "); Serial.print("Protocol: "); Serial.println( mySwitch.getReceivedProtocol() ); } mySwitch.resetAvailable(); }}