Skip to content

Instantly share code, notes, and snippets.

@RRMoelker
Created July 13, 2016 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RRMoelker/54233f10c50bdb146d2b4afbef2f04cc to your computer and use it in GitHub Desktop.
Save RRMoelker/54233f10c50bdb146d2b4afbef2f04cc to your computer and use it in GitHub Desktop.
WiPy hello world blink Heartbeat LED
import time
import wipy
while True:
wipy.heartbeat(False) # disable the heartbeat
time.sleep_ms(100)
wipy.heartbeat(True) # enable the heartbeat
time.sleep_ms(100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment