├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── README.md └── demos ├── arduino-esp32 ├── graphicstest_mod │ └── graphicstest_mod.ino └── hvac_demo_v2 │ ├── DSEG14_Classic_Regular_18pt7b.h │ ├── DSEG14_Classic_Regular_36pt7b.h │ ├── DSEG7_Classic_Regular_36pt7b.h │ ├── hvac_demo_v2.ino │ ├── network_date_time_handler.cpp │ └── network_date_time_handler.h └── esp-idf └── hvac-demo ├── Makefile ├── README.md ├── components ├── deps │ ├── component.mk │ ├── dma.c │ ├── hspi.c │ ├── include │ │ └── driver │ │ │ ├── dma.h │ │ │ ├── hspi.h │ │ │ └── spi.h │ └── spi.c └── ili9341 │ ├── Adafruit_GFX_AS.cpp │ ├── Adafruit_ILI9341_fast_as.cpp │ ├── Font16.c │ ├── Font32.c │ ├── Font64.c │ ├── Font7s.c │ ├── component.mk │ ├── include │ ├── Adafruit_GFX_AS.h │ ├── Adafruit_ILI9341_fast_as.h │ ├── Font16.h │ ├── Font32.h │ ├── Font64.h │ ├── Font7s.h │ ├── Load_fonts.h │ └── mini-printf.h │ └── mini-printf.c ├── main ├── app_main.cpp ├── component.mk └── ui.cpp └── sdkconfig /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/README.md -------------------------------------------------------------------------------- /demos/arduino-esp32/graphicstest_mod/graphicstest_mod.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/arduino-esp32/graphicstest_mod/graphicstest_mod.ino -------------------------------------------------------------------------------- /demos/arduino-esp32/hvac_demo_v2/DSEG14_Classic_Regular_18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/arduino-esp32/hvac_demo_v2/DSEG14_Classic_Regular_18pt7b.h -------------------------------------------------------------------------------- /demos/arduino-esp32/hvac_demo_v2/DSEG14_Classic_Regular_36pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/arduino-esp32/hvac_demo_v2/DSEG14_Classic_Regular_36pt7b.h -------------------------------------------------------------------------------- /demos/arduino-esp32/hvac_demo_v2/DSEG7_Classic_Regular_36pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/arduino-esp32/hvac_demo_v2/DSEG7_Classic_Regular_36pt7b.h -------------------------------------------------------------------------------- /demos/arduino-esp32/hvac_demo_v2/hvac_demo_v2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/arduino-esp32/hvac_demo_v2/hvac_demo_v2.ino -------------------------------------------------------------------------------- /demos/arduino-esp32/hvac_demo_v2/network_date_time_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/arduino-esp32/hvac_demo_v2/network_date_time_handler.cpp -------------------------------------------------------------------------------- /demos/arduino-esp32/hvac_demo_v2/network_date_time_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/arduino-esp32/hvac_demo_v2/network_date_time_handler.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/Makefile -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/README.md -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/deps/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/deps/component.mk -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/deps/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/deps/dma.c -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/deps/hspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/deps/hspi.c -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/deps/include/driver/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/deps/include/driver/dma.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/deps/include/driver/hspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/deps/include/driver/hspi.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/deps/include/driver/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/deps/include/driver/spi.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/deps/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/deps/spi.c -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/Adafruit_GFX_AS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/Adafruit_GFX_AS.cpp -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/Adafruit_ILI9341_fast_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/Adafruit_ILI9341_fast_as.cpp -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/Font16.c -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/Font32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/Font32.c -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/Font64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/Font64.c -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/Font7s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/Font7s.c -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/component.mk -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/include/Adafruit_GFX_AS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/include/Adafruit_GFX_AS.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/include/Adafruit_ILI9341_fast_as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/include/Adafruit_ILI9341_fast_as.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/include/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/include/Font16.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/include/Font32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/include/Font32.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/include/Font64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/include/Font64.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/include/Font7s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/include/Font7s.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/include/Load_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/include/Load_fonts.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/include/mini-printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/include/mini-printf.h -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/components/ili9341/mini-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/components/ili9341/mini-printf.c -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/main/app_main.cpp -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/main/component.mk -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/main/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/main/ui.cpp -------------------------------------------------------------------------------- /demos/esp-idf/hvac-demo/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyMacGyver/ESP32_Adafruit_ILI9341/HEAD/demos/esp-idf/hvac-demo/sdkconfig --------------------------------------------------------------------------------