We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab7bab9 commit bf91f83Copy full SHA for bf91f83
Examples/Lessons/L3_LetsStartProgramming/L3_Activity1/L3_Activity1.ino
@@ -0,0 +1,21 @@
1
+/*
2
+ CTC GO! CORE MODULE
3
+ LESSON 03 - Let's Start Programming
4
+
5
+ This sketch is written to accompany Activity 1 in Lesson 03 of the CTC GO! core module
6
7
+*/
8
9
+void setup()
10
+{
11
+ // initialize digital pin LED_BUILTIN as an output.
12
+ pinMode(LED_BUILTIN, OUTPUT);
13
+}
14
15
+void loop()
16
17
+ digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
18
+ delay(1000); // wait for a second
19
+ digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
20
21
0 commit comments