Cytron Maker Nano RP2040
The Cytron Nano RP2040 is a low-cost ($9), high-functionality board.
features
- Low cost: $9
- 14 GPIO blue LEDs
- 2 RGB LEDs (Neopixels)
- 1 Piezo buzzer
- 2 4-wire JST-SH ports (with Grove connectors)

Blink Lab
| from machine import Pin # get the Pin function from the machine module
from time import sleep # get the sleep library from the time module
# this is the built-in green LED on the Pico
led = machine.Pin(0, machine.Pin.OUT)
# repeat forever
while True:
led.high() # turn on the LED
sleep(0.5) # leave it on for 1/2 second
led.low() # Turn off the LED
sleep(0.5) # leave it off for 1/2 second
|