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 55128cf commit cbd9435Copy full SHA for cbd9435
Arduino-CLI/Blink/Blink/Blink.ino
@@ -0,0 +1,13 @@
1
+// the setup function runs once when you press reset or power the board
2
+void setup() {
3
+ // initialize digital pin LED_BUILTIN as an output.
4
+ pinMode(LED_BUILTIN, OUTPUT);
5
+}
6
+
7
+// the loop function runs over and over again forever
8
+void loop() {
9
+ digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
10
+ delay(1000); // wait for a second
11
+ digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
12
13
0 commit comments