├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── OXRS-IO-TouchPanel-WIN-APP ├── OXRS-IO-TouchPanel-WIN-APP.zip └── README.md ├── README.md ├── cases └── README.md ├── include ├── classColorPicker.h ├── classDropDown.h ├── classImageList.h ├── classKeyPad.h ├── classMessageFeed.h ├── classPopUpContainer.h ├── classRemote.h ├── classScreen.h ├── classScreenList.h ├── classScreenSettings.h ├── classThermostat.h ├── classTile.h ├── classTileList.h └── globalDefines.h ├── platformio.ini ├── scripts ├── debug_extra.py ├── release_extra.py ├── wt32-plus_extra.py ├── wt32_extra.py └── wt32s3-86_extra.py └── src ├── classes ├── classColorPicker.cpp ├── classDropDown.cpp ├── classImageList.cpp ├── classKeyPad.cpp ├── classMessageFeed.cpp ├── classPopUpContainer.cpp ├── classRemote.cpp ├── classScreen.cpp ├── classScreenList.cpp ├── classScreenSettings.cpp ├── classThermostat.cpp ├── classTile.cpp └── classTileList.cpp ├── main.cpp ├── panels ├── cfgWT32-SC01-plus.hpp ├── cfgWT32-SC01.hpp ├── cfgWT32S3-86S.hpp └── cfgWT32S3-86V.hpp └── resources ├── KodiStyleBlackAlpha_png.c ├── ios_3dprint_60.c ├── ios_back_25_l.c ├── ios_blind_60.c ├── ios_bulb_60.c ├── ios_ceiling_fan_60.c ├── ios_coffee_60.c ├── ios_door_60.c ├── ios_down_nb_30.c ├── ios_feed_60.c ├── ios_home_25_l.c ├── ios_left_30.c ├── ios_locked_60.c ├── ios_music_60.c ├── ios_next_40.c ├── ios_onoff_60.c ├── ios_pause_60.c ├── ios_play_60.c ├── ios_prev_40.c ├── ios_remote_60.c ├── ios_right_30.c ├── ios_room_60.c ├── ios_settings_25_l.c ├── ios_slider_60.c ├── ios_speaker_60.c ├── ios_thermometer_60.c ├── ios_unlocked_60.c ├── ios_up_nb_30.c ├── ios_window_60.c ├── number_OR_50.c ├── oxrs_settings_png.c ├── oxrs_splash_png.c ├── pwd_fond_15.c └── wp_symbol_font_15.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/LICENSE -------------------------------------------------------------------------------- /OXRS-IO-TouchPanel-WIN-APP/OXRS-IO-TouchPanel-WIN-APP.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/OXRS-IO-TouchPanel-WIN-APP/OXRS-IO-TouchPanel-WIN-APP.zip -------------------------------------------------------------------------------- /OXRS-IO-TouchPanel-WIN-APP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/OXRS-IO-TouchPanel-WIN-APP/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/README.md -------------------------------------------------------------------------------- /cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/cases/README.md -------------------------------------------------------------------------------- /include/classColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classColorPicker.h -------------------------------------------------------------------------------- /include/classDropDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classDropDown.h -------------------------------------------------------------------------------- /include/classImageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classImageList.h -------------------------------------------------------------------------------- /include/classKeyPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classKeyPad.h -------------------------------------------------------------------------------- /include/classMessageFeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classMessageFeed.h -------------------------------------------------------------------------------- /include/classPopUpContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classPopUpContainer.h -------------------------------------------------------------------------------- /include/classRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classRemote.h -------------------------------------------------------------------------------- /include/classScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classScreen.h -------------------------------------------------------------------------------- /include/classScreenList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classScreenList.h -------------------------------------------------------------------------------- /include/classScreenSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classScreenSettings.h -------------------------------------------------------------------------------- /include/classThermostat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classThermostat.h -------------------------------------------------------------------------------- /include/classTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classTile.h -------------------------------------------------------------------------------- /include/classTileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/classTileList.h -------------------------------------------------------------------------------- /include/globalDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/include/globalDefines.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/platformio.ini -------------------------------------------------------------------------------- /scripts/debug_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/scripts/debug_extra.py -------------------------------------------------------------------------------- /scripts/release_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/scripts/release_extra.py -------------------------------------------------------------------------------- /scripts/wt32-plus_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/scripts/wt32-plus_extra.py -------------------------------------------------------------------------------- /scripts/wt32_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/scripts/wt32_extra.py -------------------------------------------------------------------------------- /scripts/wt32s3-86_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/scripts/wt32s3-86_extra.py -------------------------------------------------------------------------------- /src/classes/classColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classColorPicker.cpp -------------------------------------------------------------------------------- /src/classes/classDropDown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classDropDown.cpp -------------------------------------------------------------------------------- /src/classes/classImageList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classImageList.cpp -------------------------------------------------------------------------------- /src/classes/classKeyPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classKeyPad.cpp -------------------------------------------------------------------------------- /src/classes/classMessageFeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classMessageFeed.cpp -------------------------------------------------------------------------------- /src/classes/classPopUpContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classPopUpContainer.cpp -------------------------------------------------------------------------------- /src/classes/classRemote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classRemote.cpp -------------------------------------------------------------------------------- /src/classes/classScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classScreen.cpp -------------------------------------------------------------------------------- /src/classes/classScreenList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classScreenList.cpp -------------------------------------------------------------------------------- /src/classes/classScreenSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classScreenSettings.cpp -------------------------------------------------------------------------------- /src/classes/classThermostat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classThermostat.cpp -------------------------------------------------------------------------------- /src/classes/classTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classTile.cpp -------------------------------------------------------------------------------- /src/classes/classTileList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/classes/classTileList.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/panels/cfgWT32-SC01-plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/panels/cfgWT32-SC01-plus.hpp -------------------------------------------------------------------------------- /src/panels/cfgWT32-SC01.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/panels/cfgWT32-SC01.hpp -------------------------------------------------------------------------------- /src/panels/cfgWT32S3-86S.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/panels/cfgWT32S3-86S.hpp -------------------------------------------------------------------------------- /src/panels/cfgWT32S3-86V.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/panels/cfgWT32S3-86V.hpp -------------------------------------------------------------------------------- /src/resources/KodiStyleBlackAlpha_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/KodiStyleBlackAlpha_png.c -------------------------------------------------------------------------------- /src/resources/ios_3dprint_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_3dprint_60.c -------------------------------------------------------------------------------- /src/resources/ios_back_25_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_back_25_l.c -------------------------------------------------------------------------------- /src/resources/ios_blind_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_blind_60.c -------------------------------------------------------------------------------- /src/resources/ios_bulb_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_bulb_60.c -------------------------------------------------------------------------------- /src/resources/ios_ceiling_fan_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_ceiling_fan_60.c -------------------------------------------------------------------------------- /src/resources/ios_coffee_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_coffee_60.c -------------------------------------------------------------------------------- /src/resources/ios_door_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_door_60.c -------------------------------------------------------------------------------- /src/resources/ios_down_nb_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_down_nb_30.c -------------------------------------------------------------------------------- /src/resources/ios_feed_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_feed_60.c -------------------------------------------------------------------------------- /src/resources/ios_home_25_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_home_25_l.c -------------------------------------------------------------------------------- /src/resources/ios_left_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_left_30.c -------------------------------------------------------------------------------- /src/resources/ios_locked_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_locked_60.c -------------------------------------------------------------------------------- /src/resources/ios_music_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_music_60.c -------------------------------------------------------------------------------- /src/resources/ios_next_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_next_40.c -------------------------------------------------------------------------------- /src/resources/ios_onoff_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_onoff_60.c -------------------------------------------------------------------------------- /src/resources/ios_pause_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_pause_60.c -------------------------------------------------------------------------------- /src/resources/ios_play_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_play_60.c -------------------------------------------------------------------------------- /src/resources/ios_prev_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_prev_40.c -------------------------------------------------------------------------------- /src/resources/ios_remote_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_remote_60.c -------------------------------------------------------------------------------- /src/resources/ios_right_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_right_30.c -------------------------------------------------------------------------------- /src/resources/ios_room_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_room_60.c -------------------------------------------------------------------------------- /src/resources/ios_settings_25_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_settings_25_l.c -------------------------------------------------------------------------------- /src/resources/ios_slider_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_slider_60.c -------------------------------------------------------------------------------- /src/resources/ios_speaker_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_speaker_60.c -------------------------------------------------------------------------------- /src/resources/ios_thermometer_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_thermometer_60.c -------------------------------------------------------------------------------- /src/resources/ios_unlocked_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_unlocked_60.c -------------------------------------------------------------------------------- /src/resources/ios_up_nb_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_up_nb_30.c -------------------------------------------------------------------------------- /src/resources/ios_window_60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/ios_window_60.c -------------------------------------------------------------------------------- /src/resources/number_OR_50.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/number_OR_50.c -------------------------------------------------------------------------------- /src/resources/oxrs_settings_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/oxrs_settings_png.c -------------------------------------------------------------------------------- /src/resources/oxrs_splash_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/oxrs_splash_png.c -------------------------------------------------------------------------------- /src/resources/pwd_fond_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/pwd_fond_15.c -------------------------------------------------------------------------------- /src/resources/wp_symbol_font_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXRS-IO/OXRS-IO-TouchPanel-ESP32-FW/HEAD/src/resources/wp_symbol_font_15.c --------------------------------------------------------------------------------