Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.41 KB

File metadata and controls

59 lines (42 loc) · 1.41 KB

PicoCalc Calc Firmware

This has been tested only with a Pico 2W.

Build, flash, and type "help".

Notes

Requires keyboard firmware update for battery display.

Issues

  • "long" inputs with errors doesn't line up properly somehow

Features

  • Maths! It does uses the TinyExpr library, it isn't super fresh but it does work.

Current commands

flash: reset in flash mode
reset: soft reset
bat: get battery level
mem: show memory usage (broken)
ver: show version
uwu: ???
anything else will be fed to tinyexpr (he's hungry)

TODO

Build Instructions

# Clone the repo
git clone --recursive https://github.com/rhaamo/picocalc-calc

# Navigate to the project directory
cd {path_to_this_project}

# Create and enter the build directory
mkdir build
cd build

# Set the PICO SDK path
export PICO_SDK_PATH=/path/to/pico-sdk

# Configure and build the project
cmake ..
make

Special thanks

Hsuan Han Lai for initial LVGL porting and demo project for the PicoCalc