MicroPython



TL; DR;

See also : https://wiki.seeedstudio.com/XIAO-RP2040-with-CircuitPython/

Hello World

Create a main.py file and copy this code into it, then copy it to the virtual “USB-KEY/DISK”.

Blinking the onboard blue led, minimalistic code.

"""Example for Pico. Blinks the built-in LED."""
import time
import board
import digitalio

led = digitalio.DigitalInOut(board.LED)
led.direction = digitalio.Direction.OUTPUT

while True:
    led.value = True
    time.sleep(0.5)
    led.value = False
    time.sleep(0.5)

Playground / sandbox board