RF 433MHZ Receiver Module ZR4

https://www.botshop.co.za/web/image/product.template/1493/image_1920?unique=3c1cb16
(0 review)

32.22 32.22 ZAR 32.22 VAT Included

28.02 VAT Included

Not Available For Sale

This combination does not exist.

RF BreakoutModule Wireless Other Module

Internal Reference: MOD-162


RF 433MHZ Receiver Module ZR4

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


1Operating Frequency433MHz
2Operating VoltageDC5V±0.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

 

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();
 }
}