├── .github └── workflows │ └── platformio.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── include ├── README ├── battery.hpp ├── clock.hpp ├── eeprom.hpp ├── hal.hpp ├── mpu.hpp ├── ntp.hpp ├── pages.hpp ├── pages │ ├── page-battery.hpp │ ├── page-bearing.hpp │ ├── page-clock.hpp │ ├── page-ota.hpp │ └── page-temperature.hpp ├── sleep.hpp ├── translations.hpp ├── wristband-ota.hpp ├── wristband-tft.hpp └── wristband-wifi.hpp ├── lib ├── README └── lilygo │ ├── MPU9250.cpp │ ├── MPU9250.hpp │ ├── quaternionFilters.cpp │ └── quaternionFilters.hpp ├── platformio.ini ├── resources └── vcode_env_usb_build.jpg ├── src ├── hardware │ ├── battery.cpp │ ├── clock.cpp │ ├── eeprom.cpp │ ├── mpu.cpp │ └── sleep.cpp ├── main.cpp ├── pages │ ├── page-battery.cpp │ ├── page-bearing.cpp │ ├── page-clock.cpp │ ├── page-ota.cpp │ ├── page-temperature.cpp │ └── pages.cpp ├── tft │ └── wristband-tft.cpp └── wifi │ ├── ntp.cpp │ ├── wristband-ota.cpp │ └── wristband-wifi.cpp └── test └── README /.github/workflows/platformio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/.github/workflows/platformio.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .pio/** 2 | .vscode/** -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/README.md -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/README -------------------------------------------------------------------------------- /include/battery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/battery.hpp -------------------------------------------------------------------------------- /include/clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/clock.hpp -------------------------------------------------------------------------------- /include/eeprom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/eeprom.hpp -------------------------------------------------------------------------------- /include/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/hal.hpp -------------------------------------------------------------------------------- /include/mpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/mpu.hpp -------------------------------------------------------------------------------- /include/ntp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/ntp.hpp -------------------------------------------------------------------------------- /include/pages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/pages.hpp -------------------------------------------------------------------------------- /include/pages/page-battery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/pages/page-battery.hpp -------------------------------------------------------------------------------- /include/pages/page-bearing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/pages/page-bearing.hpp -------------------------------------------------------------------------------- /include/pages/page-clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/pages/page-clock.hpp -------------------------------------------------------------------------------- /include/pages/page-ota.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/pages/page-ota.hpp -------------------------------------------------------------------------------- /include/pages/page-temperature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/pages/page-temperature.hpp -------------------------------------------------------------------------------- /include/sleep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/sleep.hpp -------------------------------------------------------------------------------- /include/translations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/translations.hpp -------------------------------------------------------------------------------- /include/wristband-ota.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/wristband-ota.hpp -------------------------------------------------------------------------------- /include/wristband-tft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/wristband-tft.hpp -------------------------------------------------------------------------------- /include/wristband-wifi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/include/wristband-wifi.hpp -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/lib/README -------------------------------------------------------------------------------- /lib/lilygo/MPU9250.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/lib/lilygo/MPU9250.cpp -------------------------------------------------------------------------------- /lib/lilygo/MPU9250.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/lib/lilygo/MPU9250.hpp -------------------------------------------------------------------------------- /lib/lilygo/quaternionFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/lib/lilygo/quaternionFilters.cpp -------------------------------------------------------------------------------- /lib/lilygo/quaternionFilters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/lib/lilygo/quaternionFilters.hpp -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/platformio.ini -------------------------------------------------------------------------------- /resources/vcode_env_usb_build.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/resources/vcode_env_usb_build.jpg -------------------------------------------------------------------------------- /src/hardware/battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/hardware/battery.cpp -------------------------------------------------------------------------------- /src/hardware/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/hardware/clock.cpp -------------------------------------------------------------------------------- /src/hardware/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/hardware/eeprom.cpp -------------------------------------------------------------------------------- /src/hardware/mpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/hardware/mpu.cpp -------------------------------------------------------------------------------- /src/hardware/sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/hardware/sleep.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/pages/page-battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/pages/page-battery.cpp -------------------------------------------------------------------------------- /src/pages/page-bearing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/pages/page-bearing.cpp -------------------------------------------------------------------------------- /src/pages/page-clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/pages/page-clock.cpp -------------------------------------------------------------------------------- /src/pages/page-ota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/pages/page-ota.cpp -------------------------------------------------------------------------------- /src/pages/page-temperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/pages/page-temperature.cpp -------------------------------------------------------------------------------- /src/pages/pages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/pages/pages.cpp -------------------------------------------------------------------------------- /src/tft/wristband-tft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/tft/wristband-tft.cpp -------------------------------------------------------------------------------- /src/wifi/ntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/wifi/ntp.cpp -------------------------------------------------------------------------------- /src/wifi/wristband-ota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/wifi/wristband-ota.cpp -------------------------------------------------------------------------------- /src/wifi/wristband-wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/src/wifi/wristband-wifi.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TioRuben/TTGO-T-Wristband/HEAD/test/README --------------------------------------------------------------------------------