This repository contains a collection of micro-ROS examples for the Raspberry Pi Pico, using the Pico SDK.
Each folder is an independent example.
To build and upload an example to your Raspberry Pi Pico:
-
Open a terminal in the folder of the example you want to use.
-
Create a
build
directory and navigate into it:mkdir build cd build
-
Generate build files with CMake:
cmake ..
-
Compile the project:
make
-
Connect your Pico to your computer while holding the BOOTSEL button to mount it as a USB drive. (Or you could use picotool.)
-
Copy the generated
.uf2
file from thebuild
folder to the Pico.
This project is licensed under the BSD 3-Clause License.