Home
About
Contact
Home
Home
simple led blink using arduino
simple led blink using arduino
electrotechys media
May 12, 2020
void setup() {
pinMode(6, OUTPUT);
pinMode(8, OUTPUT);
}
void loop() {
digitalWrite(6, HIGH);
delay(500);
digitalWrite(6, LOW);
delay(500);
digitalWrite(8, HIGH);
delay(500);
digitalWrite(8, LOW);
delay(500);
}
Post a Comment
0 Comments
Popular Posts
Automatic dark sensor circuit using pic16f877a and LDR
June 20, 2018
0 Comments