The RF YK04 433MHz receiver module is a wireless receiver that operates at a frequency of 433MHz. It is commonly used in remote control systems, wireless data transmission, and various IoT applications. This module is known for its reliability, ease of use, and compatibility with microcontrollers like the Arduino UNO.
Parameter | Value |
---|---|
Operating Voltage | 5V DC |
Operating Current | 4.5mA |
Frequency | 433MHz |
Sensitivity | -105dBm |
Data Rate | 2.4kbps (max) |
Modulation Type | ASK (Amplitude Shift Keying) |
Operating Temperature | -20°C to +70°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (5V DC) |
2 | GND | Ground |
3 | DATA | Data output pin |
4 | ANT | Antenna connection |
Arduino UNO RF YK04 433MHz Receiver
+-----------+ +----------------------+
| | | |
| 5V +--------+ VCC |
| GND +--------+ GND |
| Digital Pin 2 +--+ DATA |
| | | ANT |
+-----------+ +----------------------+
/*
Example code to receive data from RF YK04 433MHz receiver
connected to an Arduino UNO. The received data is printed
to the Serial Monitor.
*/
const int dataPin = 2; // Pin connected to DATA pin of RF receiver
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(dataPin, INPUT); // Set data pin as input
}
void loop() {
int receivedData = digitalRead(dataPin); // Read data from receiver
Serial.println(receivedData); // Print received data to Serial Monitor
delay(100); // Small delay to avoid flooding the Serial Monitor
}
No Data Received:
Interference and Noise:
Inconsistent Data:
Q1: Can I use the RF YK04 433MHz receiver with other microcontrollers? A1: Yes, the RF YK04 433MHz receiver can be used with various microcontrollers, including Arduino, Raspberry Pi, and others, as long as the voltage and pin configurations are compatible.
Q2: What is the maximum range of the RF YK04 433MHz receiver? A2: The range depends on various factors, including the antenna used and environmental conditions. Typically, it can range from 50 meters to 200 meters in open space.
Q3: How can I improve the reception range? A3: Use a proper antenna, ensure a stable power supply, and place the receiver module away from sources of interference to improve the reception range.
This documentation provides a comprehensive guide to using the RF YK04 433MHz receiver module, covering its technical specifications, usage instructions, and troubleshooting tips. Whether you are a beginner or an experienced user, this guide will help you effectively integrate the receiver module into your projects.