Product |
Arduino Shield
| 433MHz RF Receiver Module -Arduino Compatible
Arduino 433MHz RF Receiver Module
.jpg)
This is cooresponding receiver:
.jpg)
If you want to experiment these two module,only need to connect them to sensor shield by cables,for example you can connect the first channel of the transmitter module with the Arduino digital I/O pin 7,and the receiver to Arduino digital I/O pin 8:
.jpg)
I wish once push one button,RF transmitter module send the signal,and after the receiver module receive the signal,light the Arduino's LED。So you can connect Arduino digital I/O pin 2 with a digital button module,in order to receive the signal:
.jpg)
Download the program into Arduino :
int ledPin = 13;
int switchPin = 2;
int sendPin = 7;
int recvPin = 8;
int value = 0;
void setup() {
pinMode(switchPin, INPUT);
pinMode(recvPin, INPUT);
pinMode(ledPin, OUTPUT);
pinMode(sendPin, OUTPUT);
}
void loop() {
value = digitalRead(switchPin);
if (HIGH == value) {
digitalWrite(sendPin, HIGH);
} else {
digitalWrite(sendPin, LOW);
}
value = digitalRead(recvPin);
if (HIGH == value) {
digitalWrite(ledPin, HIGH);
} else {
digitalWrite(ledPin, LOW);
}
}
Once push one button,RF transmitter module send the signal,and receiver module receive the signal,at last light the LED of pin 13。

Click to download the schematic diagram and test code
Categories
Newsletter
Join our newsletter today, to get latest product information and promotion code.










