pimoroni-pico-rp2350/examples/pico_jumbo/big_blink.py
Phil Howard c9f5a28cd4 CI: Refactor to match our other tooling.
Retarget pimoroni-pico to feature/picovector2-and-layers.
2025-03-05 12:31:54 +00:00

13 lines
216 B
Python

"""
Wire up a big LED to GP15 (with a resistor) and ground and make it blink!
"""
import machine
import time
led_external = machine.Pin(15, machine.Pin.OUT)
while True:
led_external.toggle()
time.sleep(1)