Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Leesounghoongledel이다연김진욱케인
Published © GPL3+

Relay Board

This is how to use relay board.

BeginnerProtip9 minutes859
Relay Board

Things used in this project

Story

Read more

Code

relay module

Arduino
this code is to turn on/off the LED per a second
void setup() {
pinMode(8, OUTPUT);
Serial.begin(9600);
delay(3000);
}

void loop() {
  digitalWrite(8, HIGH);
  Serial.println("HIGH");
  delay(1000);
  digitalWrite(8, LOW);
  Serial.println("LOW");
  delay(1000);          


}

Credits

Leesounghoon
9 projects • 4 followers
Hi my name is sung hoon lee. I`m a student at Bongilcheon High School. I want to learn 3D Printing and how to use arduino code(+python code)
Contact
gledel
100 projects • 116 followers
Looking back on my childhood, I was happy when I was making something and I was proud of myself. "Making is instinct!"
Contact
이다연
5 projects • 1 follower
First actor in fab lab is high school student.
Contact
김진욱
7 projects • 1 follower
highschool student learning 3D Priinting in Fab Lab
Contact
케인
7 projects • 2 followers
I'm 17-year old. also I'm bongilcheon high school student. I'm study 3D print.
Contact

Comments

Please log in or sign up to comment.