Watch application playground for Raspberry Pi Pico RP2040, with 1.28" 240x240 LCD display. Like this one.
- Microcontroller RP2040
- LCD display GC9A01A
- IMU QMI8658C
Project depends on pico-sdk
and uses cmake
as build system.
export PICO_SDK_PATH=(the path to SDK)
- Configure the project with cmake, ie.:
$ mkdir build
$ cd build
$ cmake ..
- Build it
$ make -j $(nproc --all)
$ python3 -m venv venv
$ . venv/bin/activate
$ pip install -r dev_tools/requirements.txt
$ python dev_tools/format.py --repo_root `pwd`