Devices & Components
Arduino Nano RP2040 Connect
USB to micro USB cable
Software & Tools
OpenMV IDE
Project description
Code
blinky.py
python
The Python "Blink" Sketch
1# Blinky example 2 3import time 4from machine import Pin 5 6# This is the only LED pin available on the Nano RP2040, 7# other than the RGB LED connected to Nina WiFi module. 8led = Pin(6, Pin.OUT) 9 10while (True): 11 led.on() 12 time.sleep_ms(250) 13 led.off() 14 time.sleep_ms(250)
Downloadable files
blinky.py
The Python "Blink" Sketch
blinky_1.py
Documentation
Arduino Nano RP2040 Connect Official Documentation
https://docs.arduino.cc/hardware/nano-rp2040-connect/
Getting Started With the Nano RP2040 Connect and OpenMV
The official docs for setting up OpenMV
https://docs.arduino.cc/tutorials/nano-rp2040-connect/rp2040-openmv-setup/
Download OpenMV IDE
https://openmv.io/pages/download
Comments
Only logged in users can leave comments