Daini
Published © CC BY-NC-SA

Control Your Home Appliances Using Arduino and Relay

How to make Control Your Home Appliances Using Arduino and Relay

BeginnerShowcase (no instructions)1 hour2,636
Control Your Home Appliances Using Arduino and Relay

Things used in this project

Story

Read more

Schematics

Schematics

Code

code 1

Arduino
void setup() {
  pinMode(13, OUTPUT);
}
void loop() {
  digitalWrite(13,
LOW);
  delay(5000);              // wait for 5 seconds
  digitalWrite(13,
HIGH);
  delay(5000);              // wait for 5 seconds
}

Credits

Daini
31 projects • 17 followers
Contact

Comments

Please log in or sign up to comment.