├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── include ├── README └── main.h ├── lib ├── README └── lv_conf.h ├── platformio.ini ├── src ├── main.cpp └── ui │ └── README └── test └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/README.md -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/include/README -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/include/main.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/lib/README -------------------------------------------------------------------------------- /lib/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/lib/lv_conf.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ui/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/src/ui/README -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbiego/wt32-lvgl-template/HEAD/test/README --------------------------------------------------------------------------------