├── .github └── FUNDING.yml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE.md ├── README.md ├── SampleUI.jpg ├── device.png ├── include └── README ├── lib └── README ├── platformio.ini ├── src ├── lv_conf.h ├── main.cpp └── main.cpp.graphtouch └── test └── README /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/README.md -------------------------------------------------------------------------------- /SampleUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/SampleUI.jpg -------------------------------------------------------------------------------- /device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/device.png -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/include/README -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/src/lv_conf.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.cpp.graphtouch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/src/main.cpp.graphtouch -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sukesh-ak/LVGL8-WT32-SC01-Arduino/HEAD/test/README --------------------------------------------------------------------------------