You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
421 B
Arduino
12 lines
421 B
Arduino
5 years ago
|
void setup() {
|
||
|
pinMode(11, OUTPUT); //set pin 11 in output mode
|
||
|
}
|
||
|
|
||
|
// the loop function runs over and over again forever
|
||
|
void loop() {
|
||
|
digitalWrite(11, HIGH); // turn the PIN on (HIGH is the highest voltage level, 5v)
|
||
|
delay(1000); // wait for a second
|
||
|
digitalWrite(11, LOW); // turn the PIN off by making the voltage LOW (0v)
|
||
|
delay(1000); // wait for a second
|
||
|
}
|