Skip to content

Commit 1294a6c

Browse files
committed
Create Sketch3
1 parent 1c6d504 commit 1294a6c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

examples/MultipleSketch/Sketch3

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
// Sketch no.3
3+
4+
void setup3 () {
5+
pinMode(LED3, OUTPUT);
6+
}
7+
8+
void loop3 () {
9+
digitalWrite(LED3, HIGH);
10+
delay(250);
11+
digitalWrite(LED3, LOW);
12+
delay(250);
13+
}

0 commit comments

Comments
 (0)