├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── SquareLine ├── SquareLine_Project.sll ├── SquareLine_Project.spj ├── SquareLine_Project_events.py └── boards │ └── espressif │ └── wt32_sc01_plus │ ├── wt32_sc01_plus.png │ └── wt32_sc01_plus.slb ├── assets ├── BatteryCase.jpg ├── OTAScreen.jpg ├── bootButton.jpg ├── diy_programmer.jpg ├── landscape.png ├── mainAppScreen.jpg ├── splashScreen.jpg ├── wt32_sc01_plus.png └── wtProgrammer.jpg ├── docs └── WT32-SC01-Plus-V1.3-EN.pdf ├── main ├── CMakeLists.txt ├── devices │ ├── conf_Makerfabs_S3_PTFT.h │ ├── conf_Makerfabs_S3_STFT.h │ ├── conf_WT32SCO1-Plus.h │ └── conf_WT32SCO1.h ├── helpers │ ├── helper_display.hpp │ ├── helper_ota.hpp │ ├── helper_ui.hpp │ └── ui_callbacks.hpp ├── idf_component.yml ├── lv_conf.h ├── main.cpp ├── main.hpp └── ui │ ├── Export-Your-Squareline-Studio-UI-Files-Here │ ├── ui.c │ ├── ui.h │ ├── ui_events.c │ ├── ui_helpers.c │ └── ui_helpers.h ├── partitions ├── partition-16MB.csv ├── partition-4MB.csv ├── partition-8MB-NoFactory.csv └── partition-8MB.csv ├── sdkconfig.defaults ├── sdkconfig.defaults.esp32s3 ├── secrets.h ├── server_certs └── SSL_Certificates_Go_Here ├── version.txt └── webserver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/README.md -------------------------------------------------------------------------------- /SquareLine/SquareLine_Project.sll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/SquareLine/SquareLine_Project.sll -------------------------------------------------------------------------------- /SquareLine/SquareLine_Project.spj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/SquareLine/SquareLine_Project.spj -------------------------------------------------------------------------------- /SquareLine/SquareLine_Project_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/SquareLine/SquareLine_Project_events.py -------------------------------------------------------------------------------- /SquareLine/boards/espressif/wt32_sc01_plus/wt32_sc01_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/SquareLine/boards/espressif/wt32_sc01_plus/wt32_sc01_plus.png -------------------------------------------------------------------------------- /SquareLine/boards/espressif/wt32_sc01_plus/wt32_sc01_plus.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/SquareLine/boards/espressif/wt32_sc01_plus/wt32_sc01_plus.slb -------------------------------------------------------------------------------- /assets/BatteryCase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/assets/BatteryCase.jpg -------------------------------------------------------------------------------- /assets/OTAScreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/assets/OTAScreen.jpg -------------------------------------------------------------------------------- /assets/bootButton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/assets/bootButton.jpg -------------------------------------------------------------------------------- /assets/diy_programmer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/assets/diy_programmer.jpg -------------------------------------------------------------------------------- /assets/landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/assets/landscape.png -------------------------------------------------------------------------------- /assets/mainAppScreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/assets/mainAppScreen.jpg -------------------------------------------------------------------------------- /assets/splashScreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/assets/splashScreen.jpg -------------------------------------------------------------------------------- /assets/wt32_sc01_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/assets/wt32_sc01_plus.png -------------------------------------------------------------------------------- /assets/wtProgrammer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/assets/wtProgrammer.jpg -------------------------------------------------------------------------------- /docs/WT32-SC01-Plus-V1.3-EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/docs/WT32-SC01-Plus-V1.3-EN.pdf -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/devices/conf_Makerfabs_S3_PTFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/devices/conf_Makerfabs_S3_PTFT.h -------------------------------------------------------------------------------- /main/devices/conf_Makerfabs_S3_STFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/devices/conf_Makerfabs_S3_STFT.h -------------------------------------------------------------------------------- /main/devices/conf_WT32SCO1-Plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/devices/conf_WT32SCO1-Plus.h -------------------------------------------------------------------------------- /main/devices/conf_WT32SCO1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/devices/conf_WT32SCO1.h -------------------------------------------------------------------------------- /main/helpers/helper_display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/helpers/helper_display.hpp -------------------------------------------------------------------------------- /main/helpers/helper_ota.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/helpers/helper_ota.hpp -------------------------------------------------------------------------------- /main/helpers/helper_ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/helpers/helper_ui.hpp -------------------------------------------------------------------------------- /main/helpers/ui_callbacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/helpers/ui_callbacks.hpp -------------------------------------------------------------------------------- /main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/idf_component.yml -------------------------------------------------------------------------------- /main/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/lv_conf.h -------------------------------------------------------------------------------- /main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/main.cpp -------------------------------------------------------------------------------- /main/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/main.hpp -------------------------------------------------------------------------------- /main/ui/Export-Your-Squareline-Studio-UI-Files-Here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/ui/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/ui/ui.c -------------------------------------------------------------------------------- /main/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/ui/ui.h -------------------------------------------------------------------------------- /main/ui/ui_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/ui/ui_events.c -------------------------------------------------------------------------------- /main/ui/ui_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/ui/ui_helpers.c -------------------------------------------------------------------------------- /main/ui/ui_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/main/ui/ui_helpers.h -------------------------------------------------------------------------------- /partitions/partition-16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/partitions/partition-16MB.csv -------------------------------------------------------------------------------- /partitions/partition-4MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/partitions/partition-4MB.csv -------------------------------------------------------------------------------- /partitions/partition-8MB-NoFactory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/partitions/partition-8MB-NoFactory.csv -------------------------------------------------------------------------------- /partitions/partition-8MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/partitions/partition-8MB.csv -------------------------------------------------------------------------------- /sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/sdkconfig.defaults -------------------------------------------------------------------------------- /sdkconfig.defaults.esp32s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/sdkconfig.defaults.esp32s3 -------------------------------------------------------------------------------- /secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/secrets.h -------------------------------------------------------------------------------- /server_certs/SSL_Certificates_Go_Here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.0.0 2 | -------------------------------------------------------------------------------- /webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janick/WT32-SqLn/HEAD/webserver.py --------------------------------------------------------------------------------