Skip to content

Instantly share code, notes, and snippets.

@detik19
Last active December 16, 2018 03:28
Show Gist options
  • Save detik19/392344864a667d0797ecee7c23b479e6 to your computer and use it in GitHub Desktop.
Save detik19/392344864a667d0797ecee7c23b479e6 to your computer and use it in GitHub Desktop.
from machine import Pin
from time import sleep
led = Pin(2, Pin.OUT)
while True:
led.value(not led.value())
sleep(2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment