We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d3a6d3 commit f2ed993Copy full SHA for f2ed993
blink_pin12_externalboard
@@ -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
11
0 commit comments