Skip to content

Instantly share code, notes, and snippets.

@ramalho
Created March 28, 2015 11:52
Show Gist options
  • Select an option

  • Save ramalho/4fac28c01876625e5a8d to your computer and use it in GitHub Desktop.

Select an option

Save ramalho/4fac28c01876625e5a8d to your computer and use it in GitHub Desktop.
Blink with Pingo
import pingo
from time import sleep
board = pingo.detect.MyBoard()
led = board.pins[13]
led.mode = pingo.OUT
while True:
led.toggle()
sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment