Skip to content

Commit f2ed993

Browse files
authored
Create blink_pin12_externalboard
1 parent 5d3a6d3 commit f2ed993

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

blink_pin12_externalboard

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
void setup() {
2+
// put your setup code here, to run once:
3+
pinMode(12,OUTPUT);
4+
}
5+
void loop() {
6+
// put your main code here, to run repeatedly:
7+
digitalWrite(12,HIGH);
8+
delay(1000);
9+
digitalWrite(12, LOW);
10+
delay(1000);
11+
}

0 commit comments

Comments
 (0)