ESP 01 - Control 5v Relay | Micro controller | 1 Channel Relay | For beginners | Arduino IDE | Control LED (On and OFF)
Control 1-Channel relay using ESP 01
1-Channel relay can control one high voltage device and uses one input trigger to activate the relay. Relays can be Active HIGH/LOW triggered (If relay gets triggers on Active LOW on input signal such relays are Active LOW trigger relays and vice versa). 1 Channel relay contains 3 input pins Vcc, GND and IN as show above. Relay has three output terminals namely NO (Normally Open), NC (Normally Closed) and COM (COMmon). When the relay is in non active state, NC and COM are in connected state and when relay is in active state NC and COM connection becomes open and NO and COM terminals are moved to connected state.
Relay can be used to either switch off a high voltage device upon relay trigger (by connecting the device between NC and COM) or to switch on a high voltage device (by connecting the device between NO and COM).
Now that we understood about relay, lets try to control it using ESP 01 as micro controller. I will be making a separate post for controlling relay using ESP and its WIFI capability. This tutorial we will purely use ESP 01 as a simple micro controller to switch on and off a led strip.
Parts needed
1. ESP 01
2. 5v 1 channel Relay (Active Low trigger). Detailed video here.
3. Multi output voltage converter power module. (12V DC in, 3.3v and 5v out). Detailed video here.
4. DC male and female jacks
5. 10 cm jumper wires
6. USB UART adapter for programming ESP 01
7. LED strip.
Now Lets Code......
Place ESP-01 in slot of USB UART adapter and insert in USB slot of your device
Let me explain a bit of below code. ESP built in LED and relay will be turned on (both are active LOW triggered), wait for 5 sec, turn LED and relay off and wait for 3 secs. This continues in a loop
Compile and upload. (see this post to know how to program ESP-01)
Pasting code here for reference.
#define RELAY 0
void setup() {
Serial.begin(115200);
pinMode(RELAY,OUTPUT);
digitalWrite(RELAY, HIGH);
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, HIGH);
}
void loop() {
Serial.println("relay ON. Waiting for 5 sec......");
digitalWrite(LED_BUILTIN, LOW);
digitalWrite(RELAY,LOW);
delay(5000);
Serial.println("relay OFF. Waiting for 3 sec......");
digitalWrite(LED_BUILTIN, HIGH);
digitalWrite(RELAY,HIGH);
delay(3000);
}
Now lets get to hardware setup.
Comments
Post a Comment