├── .github └── workflows │ └── esp-idf-v5_0.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── components ├── apa102 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── include │ │ └── apa102.h │ ├── sdkconfig.defaults │ └── src │ │ └── apa102.c ├── cmd_nvs │ ├── CMakeLists.txt │ ├── cmd_nvs.c │ └── cmd_nvs.h ├── cmd_system │ ├── CMakeLists.txt │ ├── cmd_system.c │ └── cmd_system.h ├── cmd_wifi │ ├── CMakeLists.txt │ ├── cmd_wifi.c │ └── cmd_wifi.h └── tembed │ ├── CMakeLists.txt │ ├── Kconfig │ ├── idf_component.yaml │ ├── include │ ├── img_logo.h │ ├── st7789.h │ ├── tembed.h │ └── tembed_wifi.h │ └── src │ ├── lcd_st7789.c │ ├── sdcard.c │ ├── tembed.c │ └── wifi.c ├── images ├── main.png └── wifi-pw.png ├── main ├── CMakeLists.txt ├── ble_cache.c ├── ble_gap.c ├── ble_gattc.c ├── idf_component.yml ├── idle.c ├── include │ ├── app_event.h │ ├── ble_cache.h │ ├── gatt_profile.h │ ├── idle.h │ ├── magic.h │ ├── scr.h │ └── tembed_lvgl.h ├── leds.c ├── screens │ ├── col_scr.c │ ├── gui.c │ ├── image_scr.c │ ├── main_scr.c │ ├── sdcard_scr.c │ ├── settings_scr.c │ ├── sidebar.c │ ├── smart_scr.c │ └── wifi_scr.c ├── tembed_lvgl.c └── tembed_main.c ├── partitions.csv ├── rgb565_to_png.py └── sdkconfig /.github/workflows/esp-idf-v5_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/.github/workflows/esp-idf-v5_0.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/README.md -------------------------------------------------------------------------------- /components/apa102/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/apa102/CMakeLists.txt -------------------------------------------------------------------------------- /components/apa102/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/apa102/Kconfig -------------------------------------------------------------------------------- /components/apa102/include/apa102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/apa102/include/apa102.h -------------------------------------------------------------------------------- /components/apa102/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/apa102/sdkconfig.defaults -------------------------------------------------------------------------------- /components/apa102/src/apa102.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/apa102/src/apa102.c -------------------------------------------------------------------------------- /components/cmd_nvs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/cmd_nvs/CMakeLists.txt -------------------------------------------------------------------------------- /components/cmd_nvs/cmd_nvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/cmd_nvs/cmd_nvs.c -------------------------------------------------------------------------------- /components/cmd_nvs/cmd_nvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/cmd_nvs/cmd_nvs.h -------------------------------------------------------------------------------- /components/cmd_system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/cmd_system/CMakeLists.txt -------------------------------------------------------------------------------- /components/cmd_system/cmd_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/cmd_system/cmd_system.c -------------------------------------------------------------------------------- /components/cmd_system/cmd_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/cmd_system/cmd_system.h -------------------------------------------------------------------------------- /components/cmd_wifi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/cmd_wifi/CMakeLists.txt -------------------------------------------------------------------------------- /components/cmd_wifi/cmd_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/cmd_wifi/cmd_wifi.c -------------------------------------------------------------------------------- /components/cmd_wifi/cmd_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/cmd_wifi/cmd_wifi.h -------------------------------------------------------------------------------- /components/tembed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/CMakeLists.txt -------------------------------------------------------------------------------- /components/tembed/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/Kconfig -------------------------------------------------------------------------------- /components/tembed/idf_component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/idf_component.yaml -------------------------------------------------------------------------------- /components/tembed/include/img_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/include/img_logo.h -------------------------------------------------------------------------------- /components/tembed/include/st7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/include/st7789.h -------------------------------------------------------------------------------- /components/tembed/include/tembed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/include/tembed.h -------------------------------------------------------------------------------- /components/tembed/include/tembed_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/include/tembed_wifi.h -------------------------------------------------------------------------------- /components/tembed/src/lcd_st7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/src/lcd_st7789.c -------------------------------------------------------------------------------- /components/tembed/src/sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/src/sdcard.c -------------------------------------------------------------------------------- /components/tembed/src/tembed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/src/tembed.c -------------------------------------------------------------------------------- /components/tembed/src/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/components/tembed/src/wifi.c -------------------------------------------------------------------------------- /images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/images/main.png -------------------------------------------------------------------------------- /images/wifi-pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/images/wifi-pw.png -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/ble_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/ble_cache.c -------------------------------------------------------------------------------- /main/ble_gap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/ble_gap.c -------------------------------------------------------------------------------- /main/ble_gattc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/ble_gattc.c -------------------------------------------------------------------------------- /main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/idf_component.yml -------------------------------------------------------------------------------- /main/idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/idle.c -------------------------------------------------------------------------------- /main/include/app_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/include/app_event.h -------------------------------------------------------------------------------- /main/include/ble_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/include/ble_cache.h -------------------------------------------------------------------------------- /main/include/gatt_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/include/gatt_profile.h -------------------------------------------------------------------------------- /main/include/idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/include/idle.h -------------------------------------------------------------------------------- /main/include/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/include/magic.h -------------------------------------------------------------------------------- /main/include/scr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/include/scr.h -------------------------------------------------------------------------------- /main/include/tembed_lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/include/tembed_lvgl.h -------------------------------------------------------------------------------- /main/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/leds.c -------------------------------------------------------------------------------- /main/screens/col_scr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/screens/col_scr.c -------------------------------------------------------------------------------- /main/screens/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/screens/gui.c -------------------------------------------------------------------------------- /main/screens/image_scr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/screens/image_scr.c -------------------------------------------------------------------------------- /main/screens/main_scr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/screens/main_scr.c -------------------------------------------------------------------------------- /main/screens/sdcard_scr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/screens/sdcard_scr.c -------------------------------------------------------------------------------- /main/screens/settings_scr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/screens/settings_scr.c -------------------------------------------------------------------------------- /main/screens/sidebar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/screens/sidebar.c -------------------------------------------------------------------------------- /main/screens/smart_scr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/screens/smart_scr.c -------------------------------------------------------------------------------- /main/screens/wifi_scr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/screens/wifi_scr.c -------------------------------------------------------------------------------- /main/tembed_lvgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/tembed_lvgl.c -------------------------------------------------------------------------------- /main/tembed_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/main/tembed_main.c -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/partitions.csv -------------------------------------------------------------------------------- /rgb565_to_png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/rgb565_to_png.py -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/tembed-app-shell/HEAD/sdkconfig --------------------------------------------------------------------------------