Skip to content

Instantly share code, notes, and snippets.

@linktohack
Created March 9, 2022 13:47
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 linktohack/7dff11ff6ead489383ad19d4e58ed46a to your computer and use it in GitHub Desktop.
Save linktohack/7dff11ff6ead489383ad19d4e58ed46a to your computer and use it in GitHub Desktop.
NeoPixel heart beat
pixels.fill((0, 128, 0))
pixels.show()
time.sleep(1.0)
pixels.fill((0, 255, 0))
pixels.show()
time.sleep(0.05)
pixels.fill((0, 128, 0))
pixels.show()
time.sleep(0.3)
pixels.fill((0, 255, 0))
pixels.show()
time.sleep(0.05)
pixels.fill((0, 128, 0))
pixels.show()
time.sleep(0.15)
pixels.fill((0, 255, 0))
pixels.show()
time.sleep(0.05)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment