Firmware
Quick start (MicroPythonA compact version of Python for microcontrollers like the ESP32 and Raspberry Pi Pico. It lets you script directly on embedded hardware.)
- Install ThonnyA simple Python IDE for beginners, often used with MicroPython.and connect your Pico over USB.
- Seat the Pico on the I/O board, then wire your peripheral to labeled GP pins.
- Flash MicroPythonA compact version of Python for microcontrollers like the ESP32 and Raspberry Pi Pico. It lets you script directly on embedded hardware.firmware from ThonnyA simple Python IDE for beginners, often used with MicroPython.if prompted.
from machine import Pin
import time
LED = Pin(16, Pin.OUT) # example: GP16
while True:
LED.toggle()
time.sleep(0.5)
Change 16 to match the silkscreen label you used.