feat: inital commit
This commit is contained in:
13
led_program.py
Normal file
13
led_program.py
Normal file
@@ -0,0 +1,13 @@
|
||||
import time
|
||||
|
||||
from machine import Pin
|
||||
|
||||
led_pin = Pin(32, Pin.OUT)
|
||||
|
||||
|
||||
def boostrap():
|
||||
while True:
|
||||
led_pin.on()
|
||||
time.sleep(0.5)
|
||||
led_pin.off()
|
||||
time.sleep(0.5)
|
||||
Reference in New Issue
Block a user