├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README.rst ├── data └── sk_view.json ├── default_16MB.csv ├── git_rev_macro.py ├── include └── README ├── lib └── README ├── platformio.ini ├── sdkconfig ├── sdkconfig.defaults ├── sdkconfig.old ├── sdkconfig.ttgo-t-watch ├── sdkconfig.ttgo-t-watch-v2 ├── sdkconfig.ttgo-t-watch-v3 ├── src ├── CMakeLists.txt ├── config.h ├── fonts │ ├── roboto30.c │ ├── roboto40.c │ ├── roboto60.c │ ├── roboto70.c │ └── roboto80.c ├── gui.cpp ├── gui.h ├── hardware │ ├── Wifi.cpp │ ├── Wifi.h │ ├── hardware.cpp │ ├── hardware.h │ ├── touch.cpp │ └── touch.h ├── imgs │ ├── bg_default.c │ ├── display_48px.c │ ├── exit_32px.c │ ├── info_48px.c │ ├── signalk_48px.c │ ├── signalk_x64.c │ ├── sk_image_low.h │ ├── sk_status.c │ ├── sk_statusbar_icon.c │ ├── time_48px.c │ ├── wakeup_48px.c │ ├── watch_48px.c │ └── wifi_48px.c ├── json.h ├── main.cpp ├── networking │ ├── http_request.h │ ├── signalk_socket.cpp │ ├── signalk_socket.h │ └── signalk_subscription.h ├── sounds │ ├── alert.h │ ├── beep.h │ ├── sound_player.cpp │ └── sound_player.h ├── system │ ├── async_dispatcher.cpp │ ├── async_dispatcher.h │ ├── configurable.cpp │ ├── configurable.h │ ├── events.cpp │ ├── events.h │ ├── observable.h │ ├── observer.h │ ├── systemobject.cpp │ ├── systemobject.h │ └── uuid.h └── ui │ ├── callback.cpp │ ├── callback.h │ ├── component.h │ ├── component_factory.cpp │ ├── component_factory.h │ ├── data_adapter.cpp │ ├── data_adapter.h │ ├── date_picker.h │ ├── default_view_json.h │ ├── display_settings.h │ ├── dynamic_button.cpp │ ├── dynamic_button.h │ ├── dynamic_gauge.cpp │ ├── dynamic_gauge.h │ ├── dynamic_gui.cpp │ ├── dynamic_gui.h │ ├── dynamic_helpers.cpp │ ├── dynamic_helpers.h │ ├── dynamic_label.cpp │ ├── dynamic_label.h │ ├── dynamic_switch.cpp │ ├── dynamic_switch.h │ ├── dynamic_view.h │ ├── keyboard.h │ ├── loader.h │ ├── localization.h │ ├── message.h │ ├── navigationview.h │ ├── roller.h │ ├── settings_view.h │ ├── signalk_settings.h │ ├── statusbar.h │ ├── themes.h │ ├── time_settings.h │ ├── ui_functions.h │ ├── ui_ticker.h │ ├── view.h │ ├── wakeup_settings.h │ ├── watch_info.h │ ├── wifilist.h │ └── wifisettings.h └── test └── README /.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | build 3 | .vscode -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/README.rst -------------------------------------------------------------------------------- /data/sk_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/data/sk_view.json -------------------------------------------------------------------------------- /default_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/default_16MB.csv -------------------------------------------------------------------------------- /git_rev_macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/git_rev_macro.py -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/include/README -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/platformio.ini -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/sdkconfig.defaults -------------------------------------------------------------------------------- /sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/sdkconfig.old -------------------------------------------------------------------------------- /sdkconfig.ttgo-t-watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/sdkconfig.ttgo-t-watch -------------------------------------------------------------------------------- /sdkconfig.ttgo-t-watch-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/sdkconfig.ttgo-t-watch-v2 -------------------------------------------------------------------------------- /sdkconfig.ttgo-t-watch-v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/sdkconfig.ttgo-t-watch-v3 -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/config.h -------------------------------------------------------------------------------- /src/fonts/roboto30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/fonts/roboto30.c -------------------------------------------------------------------------------- /src/fonts/roboto40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/fonts/roboto40.c -------------------------------------------------------------------------------- /src/fonts/roboto60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/fonts/roboto60.c -------------------------------------------------------------------------------- /src/fonts/roboto70.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/fonts/roboto70.c -------------------------------------------------------------------------------- /src/fonts/roboto80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/fonts/roboto80.c -------------------------------------------------------------------------------- /src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/gui.cpp -------------------------------------------------------------------------------- /src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/gui.h -------------------------------------------------------------------------------- /src/hardware/Wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/hardware/Wifi.cpp -------------------------------------------------------------------------------- /src/hardware/Wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/hardware/Wifi.h -------------------------------------------------------------------------------- /src/hardware/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/hardware/hardware.cpp -------------------------------------------------------------------------------- /src/hardware/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/hardware/hardware.h -------------------------------------------------------------------------------- /src/hardware/touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/hardware/touch.cpp -------------------------------------------------------------------------------- /src/hardware/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/hardware/touch.h -------------------------------------------------------------------------------- /src/imgs/bg_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/bg_default.c -------------------------------------------------------------------------------- /src/imgs/display_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/display_48px.c -------------------------------------------------------------------------------- /src/imgs/exit_32px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/exit_32px.c -------------------------------------------------------------------------------- /src/imgs/info_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/info_48px.c -------------------------------------------------------------------------------- /src/imgs/signalk_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/signalk_48px.c -------------------------------------------------------------------------------- /src/imgs/signalk_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/signalk_x64.c -------------------------------------------------------------------------------- /src/imgs/sk_image_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/sk_image_low.h -------------------------------------------------------------------------------- /src/imgs/sk_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/sk_status.c -------------------------------------------------------------------------------- /src/imgs/sk_statusbar_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/sk_statusbar_icon.c -------------------------------------------------------------------------------- /src/imgs/time_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/time_48px.c -------------------------------------------------------------------------------- /src/imgs/wakeup_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/wakeup_48px.c -------------------------------------------------------------------------------- /src/imgs/watch_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/watch_48px.c -------------------------------------------------------------------------------- /src/imgs/wifi_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/imgs/wifi_48px.c -------------------------------------------------------------------------------- /src/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/json.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/networking/http_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/networking/http_request.h -------------------------------------------------------------------------------- /src/networking/signalk_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/networking/signalk_socket.cpp -------------------------------------------------------------------------------- /src/networking/signalk_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/networking/signalk_socket.h -------------------------------------------------------------------------------- /src/networking/signalk_subscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/networking/signalk_subscription.h -------------------------------------------------------------------------------- /src/sounds/alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/sounds/alert.h -------------------------------------------------------------------------------- /src/sounds/beep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/sounds/beep.h -------------------------------------------------------------------------------- /src/sounds/sound_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/sounds/sound_player.cpp -------------------------------------------------------------------------------- /src/sounds/sound_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/sounds/sound_player.h -------------------------------------------------------------------------------- /src/system/async_dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/async_dispatcher.cpp -------------------------------------------------------------------------------- /src/system/async_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/async_dispatcher.h -------------------------------------------------------------------------------- /src/system/configurable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/configurable.cpp -------------------------------------------------------------------------------- /src/system/configurable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/configurable.h -------------------------------------------------------------------------------- /src/system/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/events.cpp -------------------------------------------------------------------------------- /src/system/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/events.h -------------------------------------------------------------------------------- /src/system/observable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/observable.h -------------------------------------------------------------------------------- /src/system/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/observer.h -------------------------------------------------------------------------------- /src/system/systemobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/systemobject.cpp -------------------------------------------------------------------------------- /src/system/systemobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/systemobject.h -------------------------------------------------------------------------------- /src/system/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/system/uuid.h -------------------------------------------------------------------------------- /src/ui/callback.cpp: -------------------------------------------------------------------------------- 1 | #include "callback.h" 2 | -------------------------------------------------------------------------------- /src/ui/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/callback.h -------------------------------------------------------------------------------- /src/ui/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/component.h -------------------------------------------------------------------------------- /src/ui/component_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/component_factory.cpp -------------------------------------------------------------------------------- /src/ui/component_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/component_factory.h -------------------------------------------------------------------------------- /src/ui/data_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/data_adapter.cpp -------------------------------------------------------------------------------- /src/ui/data_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/data_adapter.h -------------------------------------------------------------------------------- /src/ui/date_picker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/date_picker.h -------------------------------------------------------------------------------- /src/ui/default_view_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/default_view_json.h -------------------------------------------------------------------------------- /src/ui/display_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/display_settings.h -------------------------------------------------------------------------------- /src/ui/dynamic_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_button.cpp -------------------------------------------------------------------------------- /src/ui/dynamic_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_button.h -------------------------------------------------------------------------------- /src/ui/dynamic_gauge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_gauge.cpp -------------------------------------------------------------------------------- /src/ui/dynamic_gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_gauge.h -------------------------------------------------------------------------------- /src/ui/dynamic_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_gui.cpp -------------------------------------------------------------------------------- /src/ui/dynamic_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_gui.h -------------------------------------------------------------------------------- /src/ui/dynamic_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_helpers.cpp -------------------------------------------------------------------------------- /src/ui/dynamic_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_helpers.h -------------------------------------------------------------------------------- /src/ui/dynamic_label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_label.cpp -------------------------------------------------------------------------------- /src/ui/dynamic_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_label.h -------------------------------------------------------------------------------- /src/ui/dynamic_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_switch.cpp -------------------------------------------------------------------------------- /src/ui/dynamic_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_switch.h -------------------------------------------------------------------------------- /src/ui/dynamic_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/dynamic_view.h -------------------------------------------------------------------------------- /src/ui/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/keyboard.h -------------------------------------------------------------------------------- /src/ui/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/loader.h -------------------------------------------------------------------------------- /src/ui/localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/localization.h -------------------------------------------------------------------------------- /src/ui/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/message.h -------------------------------------------------------------------------------- /src/ui/navigationview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/navigationview.h -------------------------------------------------------------------------------- /src/ui/roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/roller.h -------------------------------------------------------------------------------- /src/ui/settings_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/settings_view.h -------------------------------------------------------------------------------- /src/ui/signalk_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/signalk_settings.h -------------------------------------------------------------------------------- /src/ui/statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/statusbar.h -------------------------------------------------------------------------------- /src/ui/themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/themes.h -------------------------------------------------------------------------------- /src/ui/time_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/time_settings.h -------------------------------------------------------------------------------- /src/ui/ui_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/ui_functions.h -------------------------------------------------------------------------------- /src/ui/ui_ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/ui_ticker.h -------------------------------------------------------------------------------- /src/ui/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/view.h -------------------------------------------------------------------------------- /src/ui/wakeup_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/wakeup_settings.h -------------------------------------------------------------------------------- /src/ui/watch_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/watch_info.h -------------------------------------------------------------------------------- /src/ui/wifilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/wifilist.h -------------------------------------------------------------------------------- /src/ui/wifisettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/src/ui/wifisettings.h -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnySeven/TWatchSK/HEAD/test/README --------------------------------------------------------------------------------