Pimoroni Pico RGB Keypad Base using CircuitPython on Raspberry Pi Pico
- Clone this repository using
git clone git@github.com:bschapendonk/pim551.git --no-checkout <path-to-your-usual-place>in your usual place (not on the CIRCUITPY device) - On your CIRCUITPY device create an
.gitfile with the following content:gitdir: <path-to-your-usual-place>\.git - On your CIRCUITPY device run
git checkout main git reset --hard HEAD
Instal libraries using CircUp
- Install CircUp
- For Linux
cd ~ python -m venv .circuitpython source .circuitpython/bin/activate pip3 install circup - For Windows
cd %USERPROFILE% python -m venv .circuitpython %USERPROFILE%\.circuitpython\Scripts\activate.bat pip3 install circup
- For Linux
- Run
circup install -r requirements.txton your CIRCUITPY device
CircuitPython includes a built-in function to erase and reformat the filesystem.
- Connect to the CircuitPython REPL using Mu or a terminal program.
- Type the following into the REPL:
import storage
storage.erase_filesystem()