

The Relay 433MHz is a wireless relay module that operates at a frequency of 433 MHz. It is widely used in wireless communication systems to enable remote control of devices such as lights, fans, motors, and other electrical appliances. This component is ideal for applications requiring long-range wireless control, offering a reliable and efficient solution for home automation, industrial automation, and IoT projects.
Common applications and use cases include:








The Relay 433MHz module is designed to work seamlessly in wireless communication systems. Below are its key technical details:
The Relay 433MHz module typically has the following pin configuration:
| Pin Name | Description |
|---|---|
| VCC | Power supply input (5V DC). |
| GND | Ground connection. |
| IN | Control signal input (High to activate the relay, Low to deactivate). |
| NO | Normally Open terminal of the relay. Connect the load here for default OFF. |
| NC | Normally Closed terminal of the relay. Connect the load here for default ON. |
| COM | Common terminal of the relay. Connect the power source for the load here. |
Below is an example of how to control the Relay 433MHz module using an Arduino UNO:
// Example code to control a Relay 433MHz module with Arduino UNO
// Connect the IN pin of the relay to Arduino pin 7
#define RELAY_PIN 7 // Define the Arduino pin connected to the relay's IN pin
void setup() {
pinMode(RELAY_PIN, OUTPUT); // Set the relay pin as an output
digitalWrite(RELAY_PIN, LOW); // Ensure the relay is off at startup
}
void loop() {
digitalWrite(RELAY_PIN, HIGH); // Turn the relay ON
delay(5000); // Keep the relay ON for 5 seconds
digitalWrite(RELAY_PIN, LOW); // Turn the relay OFF
delay(5000); // Keep the relay OFF for 5 seconds
}
Relay Not Activating:
Erratic Behavior:
Short Communication Range:
Load Not Switching:
Q: Can I use the Relay 433MHz module with a 3.3V microcontroller?
A: Most modules require a 5V control signal. Use a level shifter or a transistor circuit to interface with a 3.3V microcontroller.
Q: What is the maximum range of the Relay 433MHz module?
A: The maximum range is typically up to 100 meters in an open area with a clear line of sight.
Q: Can I control multiple relays with a single transmitter?
A: Yes, you can control multiple relays by configuring them with unique addresses or codes, depending on the transmitter and receiver module.
Q: Is the Relay 433MHz module safe for high-power applications?
A: Yes, as long as the load does not exceed the relay's maximum voltage and current ratings (250V AC, 10A).
This documentation provides a comprehensive guide to understanding, using, and troubleshooting the Relay 433MHz module.