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 9b36d3d commit da28f29Copy full SHA for da28f29
app/start.py
@@ -1 +1,11 @@
1
print("Version 2 installed using USB")
2
+import time
3
+from machine import Pin
4
+
5
+led = Pin(2, Pin.OUT)
6
7
+while True:
8
+ led.value(1)
9
+ time.sleep(0.5)
10
+ led.value(0)
11
0 commit comments