pimoroni-pico-rp2350/micropython/examples/pico_jumbo/big_blink.py
2024-09-16 17:29:01 +01: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)