Guest User

Untitled

a guest
May 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. import machine
  2. import time
  3.  
  4. led = machine.Pin(2, machine.Pin.OUT)
  5.  
  6. while True:
  7. led.value(1)
  8. time.sleep(.5)
  9. led.value(0)
  10. time.sleep(.5)
Add Comment
Please, Sign In to add comment