pimoroni-pico-rp2350/examples/pico_plus_2_w/onboard_led.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

15 lines
187 B
Python

import time
from machine import Pin
# Setup the LED pin.
led = Pin('LEDW', Pin.OUT)
# Blink the LED!
while True:
led.value(1)
time.sleep(1)
led.value(0)
time.sleep(1)