├── .gitignore ├── README.md ├── img └── image.jpg └── src ├── config_example.h ├── lgfx_ESP32_2432S028.h ├── lv_conf.h └── main.ino /.gitignore: -------------------------------------------------------------------------------- 1 | src/config.h 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjgb/esp32-2432s028-meteo/HEAD/README.md -------------------------------------------------------------------------------- /img/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjgb/esp32-2432s028-meteo/HEAD/img/image.jpg -------------------------------------------------------------------------------- /src/config_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjgb/esp32-2432s028-meteo/HEAD/src/config_example.h -------------------------------------------------------------------------------- /src/lgfx_ESP32_2432S028.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjgb/esp32-2432s028-meteo/HEAD/src/lgfx_ESP32_2432S028.h -------------------------------------------------------------------------------- /src/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjgb/esp32-2432s028-meteo/HEAD/src/lv_conf.h -------------------------------------------------------------------------------- /src/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjgb/esp32-2432s028-meteo/HEAD/src/main.ino --------------------------------------------------------------------------------