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 01db333 commit 2e0663bCopy full SHA for 2e0663b
blinkAndSerialCommunication/blinkAndSerialCommunication.ino
@@ -18,6 +18,9 @@
18
19
modified 8 Sep 2016
20
by Colby Newman
21
+
22
+ modified 22 Jul 2017
23
+ by Enes Batur
24
*/
25
26
@@ -33,9 +36,8 @@ void setup() {
33
36
void loop() {
34
37
Serial.println("on");
35
38
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
- delay(2000);
- Serial.println("off");
- // wait for a second
39
+ delay(2000);// wait for two seconds
40
+ Serial.println("off");
41
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
- delay(2000); // wait for a second
42
+ delay(2000); // wait for two seconds
43
}
0 commit comments