m5stack / uiflow-micropython

uiflow micropython project
https://uiflow2.m5stack.com
MIT License
53 stars 27 forks source link

uiflow_micropython

How to build

Setting up ESP-IDF and the build environment

mkdir uiflow_workspace && cd uiflow_workspace
git clone -b uiflow/v2.0-idf5.0.4 https://github.com/m5stack/esp-idf.git 
git -C esp-idf submodule update --init --recursive
./esp-idf/install.sh
. ./esp-idf/export.sh

Building the firmware

git clone https://github.com/m5stack/uiflow_micropython
cd uiflow_micropython/m5stack
make submodules
make patch
make littlefs
make mpy-cross
make flash_all

The default board build the M5STACK_AtomS3 one, You can specify a different board by passing BOARD=<board> to the make commands. More BOARD type define is under m5satck/boards path.

More command support, you can check the Makefile.

Documentation

API documentation for this library can be found on Read the Docs.

License