First init.
This commit is contained in:
10
_Lab_Micropython/main.py
Normal file
10
_Lab_Micropython/main.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# This program was created in Arduino Lab for MicroPython
|
||||
|
||||
import machine
|
||||
import time
|
||||
led = machine.Pin(15, machine.Pin.OUT)
|
||||
while True:
|
||||
led.value(1)
|
||||
time.sleep(1)
|
||||
led.value(0)
|
||||
time.sleep(1)
|
||||
Reference in New Issue
Block a user