Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import machine
- import time
- led = machine.Pin('LED', machine.Pin.OUT)
- while True:
- led.value(True)
- time.sleep(1)
- led.value(False)
- time.sleep(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement