Skip to content

Instantly share code, notes, and snippets.

@tm-sanjay
Last active August 21, 2021 11:33

Revisions

  1. tm-sanjay renamed this gist Aug 21, 2021. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. tm-sanjay created this gist Aug 21, 2021.
    6 changes: 6 additions & 0 deletions pi pico blink led
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    from machine import Pin
    from time import sleep
    led = Pin(25,Pin.OUT)
    while True:
    led.toggle()
    sleep(1)