Β  1CHANNEL – RELAY INTERFACEΒ 

 

 

πŸ’‘ RELAY Interface with Arduino – Short Note

Overview:

A 1-channel relay module allows an Arduino to control high-voltage devices like lights, fans, or appliances. It acts as an electrically operated switch that can be turned ON or OFF through a digital pin of the Arduino.

🧠 Working Principle:

  • The Arduino sends a HIGH or LOW signal to the relay’s IN pin.

  • This energizes/de-energizes an internal electromagnet in the relay.

  • The relay toggles between open (OFF) and closed (ON) positions, controlling an external device.

πŸ”Œ Circuit Diagram:

 

 

 

 

 

Relay PinConnect To
VCCArduino 5V
GNDArduino GND
INArduino digital pin (e.g., D7)
COM (Common)AC Device Line wire
NO (Normally Open)AC Load

πŸ“ Sample Arduino Code:

int RELAY = 13; // Relay control pin
int LED = 8; // LED pin

void setup() {
pinMode(RELAY, OUTPUT); // Set relay pin as output
pinMode(LED, OUTPUT); // Set LED pin as output
}

void loop() {
digitalWrite(RELAY, HIGH); // Turn ON relay
digitalWrite(LED, HIGH); // Turn ON LED
delay(1000); // Wait for 1 second

digitalWrite(RELAY, LOW); // Turn OFF relay
digitalWrite(LED, LOW); // Turn OFF LED
delay(1000); // Wait for 1 second
}

βœ… Applications:

  • Home automation

  • Smart irrigation

  • Fan/light control systems

  • Industrial control panels

 

πŸ“ž For More Details & Project Support:

 

Power Integrated Solutions
Networks | Electronics | Home Automation | Water Automation | IoT | PLC | Embedded | DBMS

πŸ“ Location:
10A/3, Radhakrishnan Colony,
Sasthri Road, Tennur,
Tiruchirappalli, Tamil Nadu – 620017


πŸ“ View on Google Maps

πŸ“§ Email:

πŸ“± Phone / WhatsApp:
+91 76393 85448
+91 82488 85959

🌐 Let’s Build the Future with Innovation in Education & Technology!