├── .gitignore ├── .gitmodules ├── README.MD ├── TTGO-T-Watch.ino ├── board_def.h ├── datasheet └── S7678G_Commands_Set_Reference_1.6.5.pdf ├── font_miami.c ├── font_miami_32.c ├── font_sumptuous.c ├── font_sumptuous_24.c ├── gps_task.cpp ├── gps_task.h ├── image_location.c ├── img ├── 1.jpg └── warning.png ├── img_alipay.c ├── img_batt1.c ├── img_batt2.c ├── img_batt3.c ├── img_batt4.c ├── img_bg0.c ├── img_bg1.c ├── img_bluetooth.c ├── img_desktop.c ├── img_desktop1.c ├── img_desktop2.c ├── img_desktop3.c ├── img_direction_down.c ├── img_direction_left.c ├── img_direction_right.c ├── img_direction_up.c ├── img_directions.c ├── img_folder.c ├── img_lora.c ├── img_menu.c ├── img_placeholder.c ├── img_power.c ├── img_qr.c ├── img_setting.c ├── img_step_conut.c ├── img_ttgo.c ├── img_wechatpay.c ├── img_wifi.c ├── lv_ble.cpp ├── lv_ble.h ├── lv_dirver.cpp ├── lv_dirver.h ├── lv_filesys.cpp ├── lv_filesys.h ├── lv_swatch.c ├── lv_swatch.h ├── motion_task.cpp ├── motion_task.h └── struct_def.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/README.MD -------------------------------------------------------------------------------- /TTGO-T-Watch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/TTGO-T-Watch.ino -------------------------------------------------------------------------------- /board_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/board_def.h -------------------------------------------------------------------------------- /datasheet/S7678G_Commands_Set_Reference_1.6.5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/datasheet/S7678G_Commands_Set_Reference_1.6.5.pdf -------------------------------------------------------------------------------- /font_miami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/font_miami.c -------------------------------------------------------------------------------- /font_miami_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/font_miami_32.c -------------------------------------------------------------------------------- /font_sumptuous.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/font_sumptuous.c -------------------------------------------------------------------------------- /font_sumptuous_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/font_sumptuous_24.c -------------------------------------------------------------------------------- /gps_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/gps_task.cpp -------------------------------------------------------------------------------- /gps_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/gps_task.h -------------------------------------------------------------------------------- /image_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/image_location.c -------------------------------------------------------------------------------- /img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img/1.jpg -------------------------------------------------------------------------------- /img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img/warning.png -------------------------------------------------------------------------------- /img_alipay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_alipay.c -------------------------------------------------------------------------------- /img_batt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_batt1.c -------------------------------------------------------------------------------- /img_batt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_batt2.c -------------------------------------------------------------------------------- /img_batt3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_batt3.c -------------------------------------------------------------------------------- /img_batt4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_batt4.c -------------------------------------------------------------------------------- /img_bg0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_bg0.c -------------------------------------------------------------------------------- /img_bg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_bg1.c -------------------------------------------------------------------------------- /img_bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_bluetooth.c -------------------------------------------------------------------------------- /img_desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_desktop.c -------------------------------------------------------------------------------- /img_desktop1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_desktop1.c -------------------------------------------------------------------------------- /img_desktop2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_desktop2.c -------------------------------------------------------------------------------- /img_desktop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_desktop3.c -------------------------------------------------------------------------------- /img_direction_down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_direction_down.c -------------------------------------------------------------------------------- /img_direction_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_direction_left.c -------------------------------------------------------------------------------- /img_direction_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_direction_right.c -------------------------------------------------------------------------------- /img_direction_up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_direction_up.c -------------------------------------------------------------------------------- /img_directions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_directions.c -------------------------------------------------------------------------------- /img_folder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_folder.c -------------------------------------------------------------------------------- /img_lora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_lora.c -------------------------------------------------------------------------------- /img_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_menu.c -------------------------------------------------------------------------------- /img_placeholder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_placeholder.c -------------------------------------------------------------------------------- /img_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_power.c -------------------------------------------------------------------------------- /img_qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_qr.c -------------------------------------------------------------------------------- /img_setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_setting.c -------------------------------------------------------------------------------- /img_step_conut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_step_conut.c -------------------------------------------------------------------------------- /img_ttgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_ttgo.c -------------------------------------------------------------------------------- /img_wechatpay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_wechatpay.c -------------------------------------------------------------------------------- /img_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/img_wifi.c -------------------------------------------------------------------------------- /lv_ble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/lv_ble.cpp -------------------------------------------------------------------------------- /lv_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/lv_ble.h -------------------------------------------------------------------------------- /lv_dirver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/lv_dirver.cpp -------------------------------------------------------------------------------- /lv_dirver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/lv_dirver.h -------------------------------------------------------------------------------- /lv_filesys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/lv_filesys.cpp -------------------------------------------------------------------------------- /lv_filesys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/lv_filesys.h -------------------------------------------------------------------------------- /lv_swatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/lv_swatch.c -------------------------------------------------------------------------------- /lv_swatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/lv_swatch.h -------------------------------------------------------------------------------- /motion_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/motion_task.cpp -------------------------------------------------------------------------------- /motion_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/motion_task.h -------------------------------------------------------------------------------- /struct_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Watch/HEAD/struct_def.h --------------------------------------------------------------------------------