Description
The 5V Relay Module is used to control AC circuits, the relay acts as a switch that responds to a signal received from the Arduino, it has an integrated LED that indicates if the signal is high or low.
Commonly used in IoT projects to control lights and other electronic appliances, compatible with Arduino, Raspberry Pi, ESP32 and other microcontrollers
Specifications
The 5V Relay consist of a 1MΩ resistor, a LED, a 1N4007 rectifier diode and a 5VDC relay capable of handling up to 250VAC and 10A.
On the DC side of the board there are 3 male header pins for signal, power and ground. On the AC side there are 3 contacts, NC (Normally Closed), Common and NO (Normally Open).
Connection Diagram
For the DC part of the circuit connect S (signal) to pin 10 on the Arduino, also connect the Power line (+) and ground (-) to +5 and GND respectively.
On the AC side connect your feed to Common (middle contact) and use NC or NO according to your needs.
NO (Normally Open) will get power when (S) is high, NC (Normally Closed) gets disconnected when (S) is high.
Always be very careful when experimenting with AC, electrical shock can result in serious injures.
5V Relay | Arduino | AC Device |
---|---|---|
S | Pin 10 | |
+ | +5V | |
– | GND | |
NC | ||
Common | Feed In | |
NO | Feed Out |
Arduino Code
The following Arduino sketch will turn the relay on/off every second. We’ll connect a desk lamp to the relay using the NO (Normally Open) connection so the lamp is off when the relay is off. Running the sketch will cause the lamp to light up intermittently.
int relay = 10; //Pin 10 void setup() { pinMode(relay,OUTPUT); // Define the port attribute as output } void loop() { digitalWrite(relay,HIGH); // turn the relay ON // [NO] is connected to feed // [NC] is not connected to feed delay(1000); digitalWrite(relay,LOW); // turn the relay OFF // [NO] is not connected to feed // [NC] is connected to feed delay(1000); }