This repository contains a Raspberry Pi Pico library using its SDK writen for the 7-Degment Displays that are equiped with an TM1637 module. It also contains one example. Below are the instructions on how to build it.
After you clone the repo you run the following commands to build it. You have to have installed CMake and Make. Also you need to have the SDK on your system and point PICO_SDK_PATH
to it.
export PICO_SDK_PATH='/Path/to/SDK'
cd Pico-TM1637/example
mkdir build
cd build
cmake ..
make -j4