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 459ba16 commit 6ca4138Copy full SHA for 6ca4138
README.md
@@ -35,7 +35,30 @@ Then, go to `Code` section and copy the initial
35
code below:
36
37
```
38
+void setup()
39
+{
40
+ pinMode(13, OUTPUT);
41
+ pinMode(12, OUTPUT);
42
+ pinMode(11, OUTPUT);
43
+}
44
45
+void loop()
46
47
+ digitalWrite(13, HIGH);
48
+ digitalWrite(12, LOW);
49
+ digitalWrite(11, LOW);
50
+ delay(1000);
51
+
52
+ digitalWrite(13, LOW);
53
+ digitalWrite(12, HIGH);
54
55
56
57
58
59
+ digitalWrite(11, HIGH);
60
61
62
63
64
### Code Explanation
0 commit comments