4in1 Arduino Tutorial 4
4in1 Arduino Tutorial 4
ELECTRONICS-PROGRAMMING-ROBOTICS
▪ Week 1 – Electronics
▪ Week 2 – Programming
▪ Week 3 – Arduino
▪ Week 4 – Robotics
Arduino AC + Relays
● If the IN pin is connected to LOW (0V), the switch is open. The device is OFF (or inactive).
● If the IN pin is connected to HIGH (5V), the switch is closed. The device is ON (or active).
void setup(){
pinMode(7,OUTPUT);
}
void loop(){
pinMode(7,OUTPUT);
delay(2000);
digitalWrite(7,LOW);
delay(2000);
}
BRUTE FORCE [email protected] +263718384192
THANK YOU ARDUINO GEEKS!