├── 1.NetworkModel ├── .ipynb_checkpoints │ ├── Untitled-checkpoint.ipynb │ ├── gesture_train-checkpoint.ipynb │ └── tune_bar-checkpoint.ipynb ├── dataset │ ├── 1.log │ ├── 2.log │ ├── 3.log │ ├── close_far.log │ ├── close_near.log │ ├── cross.log │ ├── none.log │ └── open.log ├── gesture_train.ipynb ├── model.tflite ├── model_quantized.tflite └── thermo_gesture.h5 ├── 2.Firmware_ESP32 ├── 1.GetDataset │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── include │ │ ├── README │ │ └── interpolation.h │ ├── lib │ │ ├── Adafruit AMG88xx Library │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .piopm │ │ │ ├── Adafruit_AMG88xx.cpp │ │ │ ├── Adafruit_AMG88xx.h │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── amg88xx_interrupt │ │ │ │ │ └── amg88xx_interrupt.ino │ │ │ │ ├── amg88xx_test │ │ │ │ │ └── amg88xx_test.ino │ │ │ │ ├── pixels_test │ │ │ │ │ └── pixels_test.ino │ │ │ │ ├── thermal_cam │ │ │ │ │ └── thermal_cam.ino │ │ │ │ ├── thermal_cam_featherwing │ │ │ │ │ ├── .mega2560.test.skip │ │ │ │ │ └── thermal_cam_featherwing.ino │ │ │ │ └── thermal_cam_interpolate │ │ │ │ │ ├── .mega2560.test.skip │ │ │ │ │ ├── .trinket_m0.test.skip │ │ │ │ │ ├── interpolation.cpp │ │ │ │ │ └── thermal_cam_interpolate.ino │ │ │ └── library.properties │ │ ├── Adafruit BusIO │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .piopm │ │ │ ├── Adafruit_BusIO_Register.cpp │ │ │ ├── Adafruit_BusIO_Register.h │ │ │ ├── Adafruit_I2CDevice.cpp │ │ │ ├── Adafruit_I2CDevice.h │ │ │ ├── Adafruit_I2CRegister.h │ │ │ ├── Adafruit_SPIDevice.cpp │ │ │ ├── Adafruit_SPIDevice.h │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── examples │ │ │ │ ├── i2c_address_detect │ │ │ │ │ └── i2c_address_detect.ino │ │ │ │ ├── i2c_readwrite │ │ │ │ │ └── i2c_readwrite.ino │ │ │ │ ├── i2c_registers │ │ │ │ │ └── i2c_registers.ino │ │ │ │ ├── i2corspi_register │ │ │ │ │ └── i2corspi_register.ino │ │ │ │ ├── spi_modetest │ │ │ │ │ └── spi_modetest.ino │ │ │ │ ├── spi_readwrite │ │ │ │ │ └── spi_readwrite.ino │ │ │ │ ├── spi_register_bits │ │ │ │ │ └── spi_register_bits.ino │ │ │ │ └── spi_registers │ │ │ │ │ └── spi_registers.ino │ │ │ └── library.properties │ │ ├── Adafruit GFX Library │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── Adafruit_GFX.cpp │ │ │ ├── Adafruit_GFX.h │ │ │ ├── Adafruit_GrayOLED.cpp │ │ │ ├── Adafruit_GrayOLED.h │ │ │ ├── Adafruit_SPITFT.cpp │ │ │ ├── Adafruit_SPITFT.h │ │ │ ├── Adafruit_SPITFT_Macros.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Fonts │ │ │ │ ├── FreeMono12pt7b.h │ │ │ │ ├── FreeMono18pt7b.h │ │ │ │ ├── FreeMono24pt7b.h │ │ │ │ ├── FreeMono9pt7b.h │ │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ │ ├── FreeSans12pt7b.h │ │ │ │ ├── FreeSans18pt7b.h │ │ │ │ ├── FreeSans24pt7b.h │ │ │ │ ├── FreeSans9pt7b.h │ │ │ │ ├── FreeSansBold12pt7b.h │ │ │ │ ├── FreeSansBold18pt7b.h │ │ │ │ ├── FreeSansBold24pt7b.h │ │ │ │ ├── FreeSansBold9pt7b.h │ │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ │ ├── FreeSerif12pt7b.h │ │ │ │ ├── FreeSerif18pt7b.h │ │ │ │ ├── FreeSerif24pt7b.h │ │ │ │ ├── FreeSerif9pt7b.h │ │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ │ ├── Org_01.h │ │ │ │ ├── Picopixel.h │ │ │ │ ├── Tiny3x3a2pt7b.h │ │ │ │ └── TomThumb.h │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── examples │ │ │ │ ├── GFXcanvas │ │ │ │ │ ├── GFXcanvas.ino │ │ │ │ │ ├── GFXcanvasSerialDemo.cpp │ │ │ │ │ └── GFXcanvasSerialDemo.h │ │ │ │ └── mock_ili9341 │ │ │ │ │ └── mock_ili9341.ino │ │ │ ├── fontconvert │ │ │ │ ├── Makefile │ │ │ │ ├── bdf2adafruit.py │ │ │ │ ├── fontconvert.c │ │ │ │ ├── fontconvert_win.md │ │ │ │ └── makefonts.sh │ │ │ ├── gfxfont.h │ │ │ ├── glcdfont.c │ │ │ ├── library.properties │ │ │ └── license.txt │ │ ├── Adafruit ILI9341 │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── Adafruit_ILI9341.cpp │ │ │ ├── Adafruit_ILI9341.h │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── breakouttouchpaint │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ └── breakouttouchpaint.ino │ │ │ │ ├── graphicstest │ │ │ │ │ └── graphicstest.ino │ │ │ │ ├── graphicstest_featherwing │ │ │ │ │ └── graphicstest_featherwing.ino │ │ │ │ ├── graphicstest_pyportal │ │ │ │ │ └── graphicstest_pyportal.ino │ │ │ │ ├── mandelbrot │ │ │ │ │ └── mandelbrot.ino │ │ │ │ ├── onoffbutton │ │ │ │ │ └── onoffbutton.ino │ │ │ │ ├── onoffbutton_breakout │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ └── onoffbutton_breakout.ino │ │ │ │ ├── pictureEmbed │ │ │ │ │ ├── .leonardo.test.skip │ │ │ │ │ ├── dragon.h │ │ │ │ │ └── pictureEmbed.ino │ │ │ │ ├── pyportal_boing │ │ │ │ │ ├── .pyportal.test.only │ │ │ │ │ ├── graphics.h │ │ │ │ │ └── pyportal_boing.ino │ │ │ │ ├── touchpaint │ │ │ │ │ └── touchpaint.ino │ │ │ │ ├── touchpaint_featherwing │ │ │ │ │ └── touchpaint_featherwing.ino │ │ │ │ └── touchpaint_pyportal │ │ │ │ │ ├── .pyportal.test.only │ │ │ │ │ └── touchpaint_pyportal.ino │ │ │ └── library.properties │ │ ├── Adafruit ST7735 and ST7789 Library │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── Adafruit_ST7735.cpp │ │ │ ├── Adafruit_ST7735.h │ │ │ ├── Adafruit_ST7789.cpp │ │ │ ├── Adafruit_ST7789.h │ │ │ ├── Adafruit_ST77xx.cpp │ │ │ ├── Adafruit_ST77xx.h │ │ │ ├── README.txt │ │ │ ├── examples │ │ │ │ ├── displayOnOffTest │ │ │ │ │ └── displayOnOffTest.ino │ │ │ │ ├── graphicstest │ │ │ │ │ ├── .cpb.test.skip │ │ │ │ │ └── graphicstest.ino │ │ │ │ ├── graphicstest_feather_esp32s2_tft │ │ │ │ │ ├── .feather_esp32s2_tft.test.only │ │ │ │ │ └── graphicstest_feather_esp32s2_tft.ino │ │ │ │ ├── graphicstest_hallowing_m0 │ │ │ │ │ ├── .hallowing_m0.test.only │ │ │ │ │ └── graphicstest_hallowing_m0.ino │ │ │ │ ├── graphicstest_hallowing_m4 │ │ │ │ │ ├── .hallowing_m4.test.only │ │ │ │ │ └── graphicstest_hallowing_m4.ino │ │ │ │ ├── graphicstest_pybadge_pygamer │ │ │ │ │ ├── .pybadge.test.only │ │ │ │ │ ├── .pygamer.test.only │ │ │ │ │ └── graphicstest_pybadge_pygamer.ino │ │ │ │ ├── graphicstest_st7789 │ │ │ │ │ ├── .cpb.test.skip │ │ │ │ │ └── graphicstest_st7789.ino │ │ │ │ ├── graphicstest_tft_gizmo │ │ │ │ │ ├── .cplayClassic.test.skip │ │ │ │ │ ├── .due.test.skip │ │ │ │ │ ├── .esp32.test.skip │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ ├── .leonardo.test.skip │ │ │ │ │ ├── .mega2560.test.skip │ │ │ │ │ ├── .uno.test.skip │ │ │ │ │ └── graphicstest_tft_gizmo.ino │ │ │ │ ├── miniTFTWing │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.ino │ │ │ │ │ └── graphicstest │ │ │ │ │ │ └── graphicstest.ino │ │ │ │ ├── rotationtest │ │ │ │ │ └── rotationtest.ino │ │ │ │ ├── seesaw_shield18_test │ │ │ │ │ ├── .leonardo.test.skip │ │ │ │ │ └── seesaw_shield18_test.ino │ │ │ │ └── shieldtest │ │ │ │ │ └── shieldtest.ino │ │ │ └── library.properties │ │ ├── Adafruit STMPE610 │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── Adafruit_STMPE610.cpp │ │ │ ├── Adafruit_STMPE610.h │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ └── board.jpg │ │ │ ├── code-of-conduct.md │ │ │ ├── examples │ │ │ │ └── TouchTest │ │ │ │ │ └── TouchTest.ino │ │ │ └── library.properties │ │ ├── Adafruit TouchScreen │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .piopm │ │ │ ├── README.md │ │ │ ├── TouchScreen.cpp │ │ │ ├── TouchScreen.h │ │ │ ├── code-of-conduct.md │ │ │ ├── examples │ │ │ │ ├── touchscreendemo │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ └── touchscreendemo.ino │ │ │ │ └── touchscreendemoshield │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ └── touchscreendemoshield.ino │ │ │ ├── library.properties │ │ │ └── license.txt │ │ ├── Adafruit seesaw Library │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .piopm │ │ │ ├── Adafruit_Crickit.cpp │ │ │ ├── Adafruit_Crickit.h │ │ │ ├── Adafruit_NeoKey_1x4.cpp │ │ │ ├── Adafruit_NeoKey_1x4.h │ │ │ ├── Adafruit_NeoTrellis.cpp │ │ │ ├── Adafruit_NeoTrellis.h │ │ │ ├── Adafruit_TFTShield18.cpp │ │ │ ├── Adafruit_TFTShield18.h │ │ │ ├── Adafruit_miniTFTWing.cpp │ │ │ ├── Adafruit_miniTFTWing.h │ │ │ ├── Adafruit_seesaw.cpp │ │ │ ├── Adafruit_seesaw.h │ │ │ ├── Doxyfile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── Crickit │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.ino │ │ │ │ │ ├── cap_touch_demo │ │ │ │ │ │ └── cap_touch_demo.ino │ │ │ │ │ ├── drive │ │ │ │ │ │ ├── more_drivers │ │ │ │ │ │ │ └── more_drivers.ino │ │ │ │ │ │ └── test_drive │ │ │ │ │ │ │ └── test_drive.ino │ │ │ │ │ ├── fulltest │ │ │ │ │ │ └── fulltest.ino │ │ │ │ │ ├── motor │ │ │ │ │ │ └── dual_motor │ │ │ │ │ │ │ └── dual_motor.ino │ │ │ │ │ ├── servo │ │ │ │ │ │ ├── more_servos │ │ │ │ │ │ │ └── more_servos.ino │ │ │ │ │ │ └── test_servo │ │ │ │ │ │ │ └── test_servo.ino │ │ │ │ │ └── signal │ │ │ │ │ │ └── test_signal │ │ │ │ │ │ └── test_signal.ino │ │ │ │ ├── EEPROM │ │ │ │ │ └── EEPROM.ino │ │ │ │ ├── LEDArcade_1x4 │ │ │ │ │ └── LEDArcade_1x4.ino │ │ │ │ ├── NeoKey_1x4 │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.ino │ │ │ │ │ ├── basic_callback │ │ │ │ │ │ └── basic_callback.ino │ │ │ │ │ ├── basic_multikey │ │ │ │ │ │ └── basic_multikey.ino │ │ │ │ │ └── basic_neoswirl │ │ │ │ │ │ └── basic_neoswirl.ino │ │ │ │ ├── NeoPixel │ │ │ │ │ └── NeoPixel_strandtest │ │ │ │ │ │ └── NeoPixel_strandtest.ino │ │ │ │ ├── NeoSlider │ │ │ │ │ ├── Dual_NeoSlider │ │ │ │ │ │ └── Dual_NeoSlider.ino │ │ │ │ │ └── NeoSlider │ │ │ │ │ │ └── NeoSlider.ino │ │ │ │ ├── NeoTrellis │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.ino │ │ │ │ │ ├── interrupt │ │ │ │ │ │ └── interrupt.ino │ │ │ │ │ ├── multitrellis │ │ │ │ │ │ └── basic │ │ │ │ │ │ │ └── basic.ino │ │ │ │ │ ├── pattern_game │ │ │ │ │ │ └── pattern_game.ino │ │ │ │ │ └── ripples │ │ │ │ │ │ └── ripples.ino │ │ │ │ ├── analog │ │ │ │ │ ├── Fade │ │ │ │ │ │ └── Fade.ino │ │ │ │ │ └── analogRead │ │ │ │ │ │ └── analogRead.ino │ │ │ │ ├── audio_spectrum │ │ │ │ │ └── Audio_Spectrum │ │ │ │ │ │ └── Audio_Spectrum.ino │ │ │ │ ├── communication │ │ │ │ │ └── UART_loopback │ │ │ │ │ │ └── UART_loopback.ino │ │ │ │ ├── digital │ │ │ │ │ ├── attiny_blink │ │ │ │ │ │ └── attiny_blink.ino │ │ │ │ │ ├── blink │ │ │ │ │ │ └── blink.ino │ │ │ │ │ ├── gpio_interrupts │ │ │ │ │ │ └── gpio_interrupts.ino │ │ │ │ │ ├── multiblink │ │ │ │ │ │ └── multiblink.ino │ │ │ │ │ └── multiread │ │ │ │ │ │ └── multiread.ino │ │ │ │ ├── encoder │ │ │ │ │ ├── encoder_basic │ │ │ │ │ │ └── encoder_basic.ino │ │ │ │ │ └── multiple_encoders │ │ │ │ │ │ └── multiple_encoders.ino │ │ │ │ ├── joy_featherwing │ │ │ │ │ ├── joy_featherwing_ESP32 │ │ │ │ │ │ ├── .esp32.test.only │ │ │ │ │ │ └── joy_featherwing_ESP32.ino │ │ │ │ │ ├── joy_featherwing_example │ │ │ │ │ │ └── joy_featherwing_example.ino │ │ │ │ │ └── joy_wing_oled │ │ │ │ │ │ └── joy_wing_oled.ino │ │ │ │ └── soil_sensor │ │ │ │ │ └── soilsensor_example │ │ │ │ │ └── soilsensor_example.ino │ │ │ ├── library.properties │ │ │ ├── seesaw_motor.h │ │ │ ├── seesaw_neopixel.cpp │ │ │ ├── seesaw_neopixel.h │ │ │ ├── seesaw_servo.cpp │ │ │ ├── seesaw_servo.h │ │ │ ├── seesaw_spectrum.cpp │ │ │ └── seesaw_spectrum.h │ │ ├── README │ │ └── TFT_eSPI │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ └── issue-template.md │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── CMakeLists.txt │ │ │ ├── Extensions │ │ │ ├── Button.cpp │ │ │ ├── Button.h │ │ │ ├── Smooth_font.cpp │ │ │ ├── Smooth_font.h │ │ │ ├── Sprite.cpp │ │ │ ├── Sprite.h │ │ │ ├── Touch.cpp │ │ │ └── Touch.h │ │ │ ├── Fonts │ │ │ ├── Custom │ │ │ │ ├── Orbitron_Light_24.h │ │ │ │ ├── Orbitron_Light_32.h │ │ │ │ ├── Roboto_Thin_24.h │ │ │ │ ├── Satisfy_24.h │ │ │ │ └── Yellowtail_32.h │ │ │ ├── Font16.c │ │ │ ├── Font16.h │ │ │ ├── Font32rle.c │ │ │ ├── Font32rle.h │ │ │ ├── Font64rle.c │ │ │ ├── Font64rle.h │ │ │ ├── Font72rle.c │ │ │ ├── Font72rle.h │ │ │ ├── Font72x53rle.c │ │ │ ├── Font72x53rle.h │ │ │ ├── Font7srle.c │ │ │ ├── Font7srle.h │ │ │ ├── GFXFF │ │ │ │ ├── FreeMono12pt7b.h │ │ │ │ ├── FreeMono18pt7b.h │ │ │ │ ├── FreeMono24pt7b.h │ │ │ │ ├── FreeMono9pt7b.h │ │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ │ ├── FreeSans12pt7b.h │ │ │ │ ├── FreeSans18pt7b.h │ │ │ │ ├── FreeSans24pt7b.h │ │ │ │ ├── FreeSans9pt7b.h │ │ │ │ ├── FreeSansBold12pt7b.h │ │ │ │ ├── FreeSansBold18pt7b.h │ │ │ │ ├── FreeSansBold24pt7b.h │ │ │ │ ├── FreeSansBold9pt7b.h │ │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ │ ├── FreeSerif12pt7b.h │ │ │ │ ├── FreeSerif18pt7b.h │ │ │ │ ├── FreeSerif24pt7b.h │ │ │ │ ├── FreeSerif9pt7b.h │ │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ │ ├── TomThumb.h │ │ │ │ ├── gfxfont.h │ │ │ │ ├── license.txt │ │ │ │ └── print.txt │ │ │ ├── TrueType │ │ │ │ └── Not_yet_supported.txt │ │ │ └── glcdfont.c │ │ │ ├── Kconfig │ │ │ ├── Processors │ │ │ ├── TFT_eSPI_ESP32.c │ │ │ ├── TFT_eSPI_ESP32.h │ │ │ ├── TFT_eSPI_ESP32_C3.c │ │ │ ├── TFT_eSPI_ESP32_C3.h │ │ │ ├── TFT_eSPI_ESP32_S3.c │ │ │ ├── TFT_eSPI_ESP32_S3.h │ │ │ ├── TFT_eSPI_ESP8266.c │ │ │ ├── TFT_eSPI_ESP8266.h │ │ │ ├── TFT_eSPI_Generic.c │ │ │ ├── TFT_eSPI_Generic.h │ │ │ ├── TFT_eSPI_RP2040.c │ │ │ ├── TFT_eSPI_RP2040.h │ │ │ ├── TFT_eSPI_STM32.c │ │ │ ├── TFT_eSPI_STM32.h │ │ │ ├── pio_16bit_parallel.pio.h │ │ │ ├── pio_8bit_parallel.pio.h │ │ │ ├── pio_SPI.pio.h │ │ │ └── pio_SPI_18bit.pio.h │ │ │ ├── README.md │ │ │ ├── README.txt │ │ │ ├── TFT_Drivers │ │ │ ├── EPD_Defines.h │ │ │ ├── GC9A01_Defines.h │ │ │ ├── GC9A01_Init.h │ │ │ ├── GC9A01_Rotation.h │ │ │ ├── HX8357B_Defines.h │ │ │ ├── HX8357B_Init.h │ │ │ ├── HX8357B_Rotation.h │ │ │ ├── HX8357C_Defines.h │ │ │ ├── HX8357C_Init.h │ │ │ ├── HX8357C_Rotation.h │ │ │ ├── HX8357D_Defines.h │ │ │ ├── HX8357D_Init.h │ │ │ ├── HX8357D_Rotation.h │ │ │ ├── ILI9163_Defines.h │ │ │ ├── ILI9163_Init.h │ │ │ ├── ILI9163_Rotation.h │ │ │ ├── ILI9225_Defines.h │ │ │ ├── ILI9225_Init.h │ │ │ ├── ILI9225_Rotation.h │ │ │ ├── ILI9341_Defines.h │ │ │ ├── ILI9341_Init.h │ │ │ ├── ILI9341_Rotation.h │ │ │ ├── ILI9481_Defines.h │ │ │ ├── ILI9481_Init.h │ │ │ ├── ILI9481_Rotation.h │ │ │ ├── ILI9486_Defines.h │ │ │ ├── ILI9486_Init.h │ │ │ ├── ILI9486_Rotation.h │ │ │ ├── ILI9488_Defines.h │ │ │ ├── ILI9488_Init.h │ │ │ ├── ILI9488_Rotation.h │ │ │ ├── R61581_Defines.h │ │ │ ├── R61581_Init.h │ │ │ ├── R61581_Rotation.h │ │ │ ├── RM68120_Defines.h │ │ │ ├── RM68120_Init.h │ │ │ ├── RM68120_Rotation.h │ │ │ ├── RM68140_Defines.h │ │ │ ├── RM68140_Init.h │ │ │ ├── RM68140_Rotation.h │ │ │ ├── S6D02A1_Defines.h │ │ │ ├── S6D02A1_Init.h │ │ │ ├── S6D02A1_Rotation.h │ │ │ ├── SSD1351_Defines.h │ │ │ ├── SSD1351_Init.h │ │ │ ├── SSD1351_Rotation.h │ │ │ ├── SSD1963_Defines.h │ │ │ ├── SSD1963_Init.h │ │ │ ├── SSD1963_Rotation.h │ │ │ ├── ST7735_Defines.h │ │ │ ├── ST7735_Init.h │ │ │ ├── ST7735_Rotation.h │ │ │ ├── ST7789_2_Defines.h │ │ │ ├── ST7789_2_Init.h │ │ │ ├── ST7789_2_Rotation.h │ │ │ ├── ST7789_Defines.h │ │ │ ├── ST7789_Init.h │ │ │ ├── ST7789_Rotation.h │ │ │ ├── ST7796_Defines.h │ │ │ ├── ST7796_Init.h │ │ │ └── ST7796_Rotation.h │ │ │ ├── TFT_config.h │ │ │ ├── TFT_eSPI.cpp │ │ │ ├── TFT_eSPI.h │ │ │ ├── Tools │ │ │ ├── Create_Smooth_Font │ │ │ │ └── Create_font │ │ │ │ │ ├── Create_font.pde │ │ │ │ │ ├── FontFiles │ │ │ │ │ └── Final-Frontier28.vlw │ │ │ │ │ └── data │ │ │ │ │ └── Final-Frontier.ttf │ │ │ ├── Screenshot_client │ │ │ │ └── Screenshot_client.pde │ │ │ └── bmp2array4bit │ │ │ │ ├── README.md │ │ │ │ ├── bmp2array4bit.py │ │ │ │ └── star.bmp │ │ │ ├── User_Setup.h │ │ │ ├── User_Setup_Select.h │ │ │ ├── User_Setups │ │ │ ├── Setup100_RP2040_ILI9488_parallel.h │ │ │ ├── Setup101_RP2040_ILI9481_parallel.h │ │ │ ├── Setup102_RP2040_ILI9341_parallel.h │ │ │ ├── Setup103_RP2040_ILI9486_parallel.h │ │ │ ├── Setup104_RP2040_ST7796_parallel.h │ │ │ ├── Setup105_RP2040_ST7796_16bit_parallel.h │ │ │ ├── Setup106_RP2040_ILI9481_16bit_parallel.h │ │ │ ├── Setup107_RP2040_ILI9341_16bit_parallel.h │ │ │ ├── Setup10_RPi_touch_ILI9486.h │ │ │ ├── Setup11_RPi_touch_ILI9486.h │ │ │ ├── Setup12_M5Stack_Basic_Core.h │ │ │ ├── Setup135_ST7789.h │ │ │ ├── Setup136_LilyGo_TTV.h │ │ │ ├── Setup137_LilyGo_TDisplay_RP2040.h │ │ │ ├── Setup13_ILI9481_Parallel.h │ │ │ ├── Setup14_ILI9341_Parallel.h │ │ │ ├── Setup15_HX8357D.h │ │ │ ├── Setup16_ILI9488_Parallel.h │ │ │ ├── Setup17_ePaper.h │ │ │ ├── Setup18_ST7789.h │ │ │ ├── Setup19_RM68140_Parallel.h │ │ │ ├── Setup1_ILI9341.h │ │ │ ├── Setup200_GC9A01.h │ │ │ ├── Setup201_WT32_SC01.h │ │ │ ├── Setup202_SSD1351_128.h │ │ │ ├── Setup203_ST7789.h │ │ │ ├── Setup204_ESP32_TouchDown.h │ │ │ ├── Setup205_ESP32_TouchDown_S3.h │ │ │ ├── Setup20_ILI9488.h │ │ │ ├── Setup21_ILI9488.h │ │ │ ├── Setup22_TTGO_T4.h │ │ │ ├── Setup22_TTGO_T4_v1.3.h │ │ │ ├── Setup23_TTGO_TM.h │ │ │ ├── Setup24_ST7789.h │ │ │ ├── Setup25_TTGO_T_Display.h │ │ │ ├── Setup26_TTGO_T_Wristband.h │ │ │ ├── Setup27_RPi_ST7796_ESP32.h │ │ │ ├── Setup28_RPi_ST7796_ESP8266.h │ │ │ ├── Setup29_ILI9341_STM32.h │ │ │ ├── Setup2_ST7735.h │ │ │ ├── Setup301_BW16_ST7735.h │ │ │ ├── Setup30_ILI9341_Parallel_STM32.h │ │ │ ├── Setup31_ST7796_Parallel_STM32.h │ │ │ ├── Setup32_ILI9341_STM32F103.h │ │ │ ├── Setup33_RPi_ILI9486_STM32.h │ │ │ ├── Setup34_ILI9481_Parallel_STM32.h │ │ │ ├── Setup35_ILI9341_STM32_Port_Bus.h │ │ │ ├── Setup36_RPi_touch_ST7796.h │ │ │ ├── Setup3_ILI9163.h │ │ │ ├── Setup42_ILI9341_ESP32.h │ │ │ ├── Setup43_ST7735.h │ │ │ ├── Setup44_TTGO_CameraPlus.h │ │ │ ├── Setup45_TTGO_T_Watch.h │ │ │ ├── Setup46_GC9A01_ESP32.h │ │ │ ├── Setup47_ST7735.h │ │ │ ├── Setup4_S6D02A1.h │ │ │ ├── Setup50_SSD1963_Parallel.h │ │ │ ├── Setup51_LilyPi_ILI9481.h │ │ │ ├── Setup52_LilyPi_ST7796.h │ │ │ ├── Setup5_RPi_ILI9486.h │ │ │ ├── Setup60_RP2040_ILI9341.h │ │ │ ├── Setup61_RP2040_ILI9341_PIO_SPI.h │ │ │ ├── Setup62_RP2040_Nano_Connect_ILI9341.h │ │ │ ├── Setup6_RPi_Wr_ILI9486.h │ │ │ ├── Setup70_ESP32_S2_ILI9341.h │ │ │ ├── Setup70b_ESP32_S3_ILI9341.h │ │ │ ├── Setup70c_ESP32_C3_ILI9341.h │ │ │ ├── Setup70d_ILI9488_S3_Parallel.h │ │ │ ├── Setup71_ESP32_S2_ST7789.h │ │ │ ├── Setup72_ESP32_ST7789_172x320.h │ │ │ ├── Setup7_ST7735_128x128.h │ │ │ ├── Setup8_ILI9163_128x128.h │ │ │ ├── Setup9_ST7735_Overlap.h │ │ │ ├── SetupX_Template.h │ │ │ └── User_Custom_Fonts.h │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ └── license.txt │ ├── platformio.ini │ ├── src │ │ ├── interpolation.cpp │ │ └── main.cpp │ └── test │ │ └── README ├── 2.NumberPred │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── include │ │ ├── README │ │ ├── constants.h │ │ ├── interpolation.h │ │ ├── main_functions.h │ │ ├── model.h │ │ └── output_handler.h │ ├── lib │ │ ├── Adafruit AMG88xx Library │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .piopm │ │ │ ├── Adafruit_AMG88xx.cpp │ │ │ ├── Adafruit_AMG88xx.h │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── amg88xx_interrupt │ │ │ │ │ └── amg88xx_interrupt.ino │ │ │ │ ├── amg88xx_test │ │ │ │ │ └── amg88xx_test.ino │ │ │ │ ├── pixels_test │ │ │ │ │ └── pixels_test.ino │ │ │ │ ├── thermal_cam │ │ │ │ │ └── thermal_cam.ino │ │ │ │ ├── thermal_cam_featherwing │ │ │ │ │ ├── .mega2560.test.skip │ │ │ │ │ └── thermal_cam_featherwing.ino │ │ │ │ └── thermal_cam_interpolate │ │ │ │ │ ├── .mega2560.test.skip │ │ │ │ │ ├── .trinket_m0.test.skip │ │ │ │ │ ├── interpolation.cpp │ │ │ │ │ └── thermal_cam_interpolate.ino │ │ │ └── library.properties │ │ ├── Adafruit BusIO │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .piopm │ │ │ ├── Adafruit_BusIO_Register.cpp │ │ │ ├── Adafruit_BusIO_Register.h │ │ │ ├── Adafruit_I2CDevice.cpp │ │ │ ├── Adafruit_I2CDevice.h │ │ │ ├── Adafruit_I2CRegister.h │ │ │ ├── Adafruit_SPIDevice.cpp │ │ │ ├── Adafruit_SPIDevice.h │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── examples │ │ │ │ ├── i2c_address_detect │ │ │ │ │ └── i2c_address_detect.ino │ │ │ │ ├── i2c_readwrite │ │ │ │ │ └── i2c_readwrite.ino │ │ │ │ ├── i2c_registers │ │ │ │ │ └── i2c_registers.ino │ │ │ │ ├── i2corspi_register │ │ │ │ │ └── i2corspi_register.ino │ │ │ │ ├── spi_modetest │ │ │ │ │ └── spi_modetest.ino │ │ │ │ ├── spi_readwrite │ │ │ │ │ └── spi_readwrite.ino │ │ │ │ ├── spi_register_bits │ │ │ │ │ └── spi_register_bits.ino │ │ │ │ └── spi_registers │ │ │ │ │ └── spi_registers.ino │ │ │ └── library.properties │ │ ├── Adafruit GFX Library │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── Adafruit_GFX.cpp │ │ │ ├── Adafruit_GFX.h │ │ │ ├── Adafruit_GrayOLED.cpp │ │ │ ├── Adafruit_GrayOLED.h │ │ │ ├── Adafruit_SPITFT.cpp │ │ │ ├── Adafruit_SPITFT.h │ │ │ ├── Adafruit_SPITFT_Macros.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Fonts │ │ │ │ ├── FreeMono12pt7b.h │ │ │ │ ├── FreeMono18pt7b.h │ │ │ │ ├── FreeMono24pt7b.h │ │ │ │ ├── FreeMono9pt7b.h │ │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ │ ├── FreeSans12pt7b.h │ │ │ │ ├── FreeSans18pt7b.h │ │ │ │ ├── FreeSans24pt7b.h │ │ │ │ ├── FreeSans9pt7b.h │ │ │ │ ├── FreeSansBold12pt7b.h │ │ │ │ ├── FreeSansBold18pt7b.h │ │ │ │ ├── FreeSansBold24pt7b.h │ │ │ │ ├── FreeSansBold9pt7b.h │ │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ │ ├── FreeSerif12pt7b.h │ │ │ │ ├── FreeSerif18pt7b.h │ │ │ │ ├── FreeSerif24pt7b.h │ │ │ │ ├── FreeSerif9pt7b.h │ │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ │ ├── Org_01.h │ │ │ │ ├── Picopixel.h │ │ │ │ ├── Tiny3x3a2pt7b.h │ │ │ │ └── TomThumb.h │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── examples │ │ │ │ ├── GFXcanvas │ │ │ │ │ ├── GFXcanvas.ino │ │ │ │ │ ├── GFXcanvasSerialDemo.cpp │ │ │ │ │ └── GFXcanvasSerialDemo.h │ │ │ │ └── mock_ili9341 │ │ │ │ │ └── mock_ili9341.ino │ │ │ ├── fontconvert │ │ │ │ ├── Makefile │ │ │ │ ├── bdf2adafruit.py │ │ │ │ ├── fontconvert.c │ │ │ │ ├── fontconvert_win.md │ │ │ │ └── makefonts.sh │ │ │ ├── gfxfont.h │ │ │ ├── glcdfont.c │ │ │ ├── library.properties │ │ │ └── license.txt │ │ ├── Adafruit ILI9341 │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── Adafruit_ILI9341.cpp │ │ │ ├── Adafruit_ILI9341.h │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── breakouttouchpaint │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ └── breakouttouchpaint.ino │ │ │ │ ├── graphicstest │ │ │ │ │ └── graphicstest.ino │ │ │ │ ├── graphicstest_featherwing │ │ │ │ │ └── graphicstest_featherwing.ino │ │ │ │ ├── graphicstest_pyportal │ │ │ │ │ └── graphicstest_pyportal.ino │ │ │ │ ├── mandelbrot │ │ │ │ │ └── mandelbrot.ino │ │ │ │ ├── onoffbutton │ │ │ │ │ └── onoffbutton.ino │ │ │ │ ├── onoffbutton_breakout │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ └── onoffbutton_breakout.ino │ │ │ │ ├── pictureEmbed │ │ │ │ │ ├── .leonardo.test.skip │ │ │ │ │ ├── dragon.h │ │ │ │ │ └── pictureEmbed.ino │ │ │ │ ├── pyportal_boing │ │ │ │ │ ├── .pyportal.test.only │ │ │ │ │ ├── graphics.h │ │ │ │ │ └── pyportal_boing.ino │ │ │ │ ├── touchpaint │ │ │ │ │ └── touchpaint.ino │ │ │ │ ├── touchpaint_featherwing │ │ │ │ │ └── touchpaint_featherwing.ino │ │ │ │ └── touchpaint_pyportal │ │ │ │ │ ├── .pyportal.test.only │ │ │ │ │ └── touchpaint_pyportal.ino │ │ │ └── library.properties │ │ ├── Adafruit ST7735 and ST7789 Library │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── Adafruit_ST7735.cpp │ │ │ ├── Adafruit_ST7735.h │ │ │ ├── Adafruit_ST7789.cpp │ │ │ ├── Adafruit_ST7789.h │ │ │ ├── Adafruit_ST77xx.cpp │ │ │ ├── Adafruit_ST77xx.h │ │ │ ├── README.txt │ │ │ ├── examples │ │ │ │ ├── displayOnOffTest │ │ │ │ │ └── displayOnOffTest.ino │ │ │ │ ├── graphicstest │ │ │ │ │ ├── .cpb.test.skip │ │ │ │ │ └── graphicstest.ino │ │ │ │ ├── graphicstest_feather_esp32s2_tft │ │ │ │ │ ├── .feather_esp32s2_tft.test.only │ │ │ │ │ └── graphicstest_feather_esp32s2_tft.ino │ │ │ │ ├── graphicstest_hallowing_m0 │ │ │ │ │ ├── .hallowing_m0.test.only │ │ │ │ │ └── graphicstest_hallowing_m0.ino │ │ │ │ ├── graphicstest_hallowing_m4 │ │ │ │ │ ├── .hallowing_m4.test.only │ │ │ │ │ └── graphicstest_hallowing_m4.ino │ │ │ │ ├── graphicstest_pybadge_pygamer │ │ │ │ │ ├── .pybadge.test.only │ │ │ │ │ ├── .pygamer.test.only │ │ │ │ │ └── graphicstest_pybadge_pygamer.ino │ │ │ │ ├── graphicstest_st7789 │ │ │ │ │ ├── .cpb.test.skip │ │ │ │ │ └── graphicstest_st7789.ino │ │ │ │ ├── graphicstest_tft_gizmo │ │ │ │ │ ├── .cplayClassic.test.skip │ │ │ │ │ ├── .due.test.skip │ │ │ │ │ ├── .esp32.test.skip │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ ├── .leonardo.test.skip │ │ │ │ │ ├── .mega2560.test.skip │ │ │ │ │ ├── .uno.test.skip │ │ │ │ │ └── graphicstest_tft_gizmo.ino │ │ │ │ ├── miniTFTWing │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.ino │ │ │ │ │ └── graphicstest │ │ │ │ │ │ └── graphicstest.ino │ │ │ │ ├── rotationtest │ │ │ │ │ └── rotationtest.ino │ │ │ │ ├── seesaw_shield18_test │ │ │ │ │ ├── .leonardo.test.skip │ │ │ │ │ └── seesaw_shield18_test.ino │ │ │ │ └── shieldtest │ │ │ │ │ └── shieldtest.ino │ │ │ └── library.properties │ │ ├── Adafruit STMPE610 │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── Adafruit_STMPE610.cpp │ │ │ ├── Adafruit_STMPE610.h │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ └── board.jpg │ │ │ ├── code-of-conduct.md │ │ │ ├── examples │ │ │ │ └── TouchTest │ │ │ │ │ └── TouchTest.ino │ │ │ └── library.properties │ │ ├── Adafruit TouchScreen │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .piopm │ │ │ ├── README.md │ │ │ ├── TouchScreen.cpp │ │ │ ├── TouchScreen.h │ │ │ ├── code-of-conduct.md │ │ │ ├── examples │ │ │ │ ├── touchscreendemo │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ └── touchscreendemo.ino │ │ │ │ └── touchscreendemoshield │ │ │ │ │ ├── .esp8266.test.skip │ │ │ │ │ └── touchscreendemoshield.ino │ │ │ ├── library.properties │ │ │ └── license.txt │ │ ├── Adafruit seesaw Library │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── githubci.yml │ │ │ ├── .piopm │ │ │ ├── Adafruit_Crickit.cpp │ │ │ ├── Adafruit_Crickit.h │ │ │ ├── Adafruit_NeoKey_1x4.cpp │ │ │ ├── Adafruit_NeoKey_1x4.h │ │ │ ├── Adafruit_NeoTrellis.cpp │ │ │ ├── Adafruit_NeoTrellis.h │ │ │ ├── Adafruit_TFTShield18.cpp │ │ │ ├── Adafruit_TFTShield18.h │ │ │ ├── Adafruit_miniTFTWing.cpp │ │ │ ├── Adafruit_miniTFTWing.h │ │ │ ├── Adafruit_seesaw.cpp │ │ │ ├── Adafruit_seesaw.h │ │ │ ├── Doxyfile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── Crickit │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.ino │ │ │ │ │ ├── cap_touch_demo │ │ │ │ │ │ └── cap_touch_demo.ino │ │ │ │ │ ├── drive │ │ │ │ │ │ ├── more_drivers │ │ │ │ │ │ │ └── more_drivers.ino │ │ │ │ │ │ └── test_drive │ │ │ │ │ │ │ └── test_drive.ino │ │ │ │ │ ├── fulltest │ │ │ │ │ │ └── fulltest.ino │ │ │ │ │ ├── motor │ │ │ │ │ │ └── dual_motor │ │ │ │ │ │ │ └── dual_motor.ino │ │ │ │ │ ├── servo │ │ │ │ │ │ ├── more_servos │ │ │ │ │ │ │ └── more_servos.ino │ │ │ │ │ │ └── test_servo │ │ │ │ │ │ │ └── test_servo.ino │ │ │ │ │ └── signal │ │ │ │ │ │ └── test_signal │ │ │ │ │ │ └── test_signal.ino │ │ │ │ ├── EEPROM │ │ │ │ │ └── EEPROM.ino │ │ │ │ ├── LEDArcade_1x4 │ │ │ │ │ └── LEDArcade_1x4.ino │ │ │ │ ├── NeoKey_1x4 │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.ino │ │ │ │ │ ├── basic_callback │ │ │ │ │ │ └── basic_callback.ino │ │ │ │ │ ├── basic_multikey │ │ │ │ │ │ └── basic_multikey.ino │ │ │ │ │ └── basic_neoswirl │ │ │ │ │ │ └── basic_neoswirl.ino │ │ │ │ ├── NeoPixel │ │ │ │ │ └── NeoPixel_strandtest │ │ │ │ │ │ └── NeoPixel_strandtest.ino │ │ │ │ ├── NeoSlider │ │ │ │ │ ├── Dual_NeoSlider │ │ │ │ │ │ └── Dual_NeoSlider.ino │ │ │ │ │ └── NeoSlider │ │ │ │ │ │ └── NeoSlider.ino │ │ │ │ ├── NeoTrellis │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.ino │ │ │ │ │ ├── interrupt │ │ │ │ │ │ └── interrupt.ino │ │ │ │ │ ├── multitrellis │ │ │ │ │ │ └── basic │ │ │ │ │ │ │ └── basic.ino │ │ │ │ │ ├── pattern_game │ │ │ │ │ │ └── pattern_game.ino │ │ │ │ │ └── ripples │ │ │ │ │ │ └── ripples.ino │ │ │ │ ├── analog │ │ │ │ │ ├── Fade │ │ │ │ │ │ └── Fade.ino │ │ │ │ │ └── analogRead │ │ │ │ │ │ └── analogRead.ino │ │ │ │ ├── audio_spectrum │ │ │ │ │ └── Audio_Spectrum │ │ │ │ │ │ └── Audio_Spectrum.ino │ │ │ │ ├── communication │ │ │ │ │ └── UART_loopback │ │ │ │ │ │ └── UART_loopback.ino │ │ │ │ ├── digital │ │ │ │ │ ├── attiny_blink │ │ │ │ │ │ └── attiny_blink.ino │ │ │ │ │ ├── blink │ │ │ │ │ │ └── blink.ino │ │ │ │ │ ├── gpio_interrupts │ │ │ │ │ │ └── gpio_interrupts.ino │ │ │ │ │ ├── multiblink │ │ │ │ │ │ └── multiblink.ino │ │ │ │ │ └── multiread │ │ │ │ │ │ └── multiread.ino │ │ │ │ ├── encoder │ │ │ │ │ ├── encoder_basic │ │ │ │ │ │ └── encoder_basic.ino │ │ │ │ │ └── multiple_encoders │ │ │ │ │ │ └── multiple_encoders.ino │ │ │ │ ├── joy_featherwing │ │ │ │ │ ├── joy_featherwing_ESP32 │ │ │ │ │ │ ├── .esp32.test.only │ │ │ │ │ │ └── joy_featherwing_ESP32.ino │ │ │ │ │ ├── joy_featherwing_example │ │ │ │ │ │ └── joy_featherwing_example.ino │ │ │ │ │ └── joy_wing_oled │ │ │ │ │ │ └── joy_wing_oled.ino │ │ │ │ └── soil_sensor │ │ │ │ │ └── soilsensor_example │ │ │ │ │ └── soilsensor_example.ino │ │ │ ├── library.properties │ │ │ ├── seesaw_motor.h │ │ │ ├── seesaw_neopixel.cpp │ │ │ ├── seesaw_neopixel.h │ │ │ ├── seesaw_servo.cpp │ │ │ ├── seesaw_servo.h │ │ │ ├── seesaw_spectrum.cpp │ │ │ └── seesaw_spectrum.h │ │ ├── README │ │ ├── TFT_eSPI │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ └── ISSUE_TEMPLATE │ │ │ │ │ └── issue-template.md │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── CMakeLists.txt │ │ │ ├── Extensions │ │ │ │ ├── Button.cpp │ │ │ │ ├── Button.h │ │ │ │ ├── Smooth_font.cpp │ │ │ │ ├── Smooth_font.h │ │ │ │ ├── Sprite.cpp │ │ │ │ ├── Sprite.h │ │ │ │ ├── Touch.cpp │ │ │ │ └── Touch.h │ │ │ ├── Fonts │ │ │ │ ├── Custom │ │ │ │ │ ├── Orbitron_Light_24.h │ │ │ │ │ ├── Orbitron_Light_32.h │ │ │ │ │ ├── Roboto_Thin_24.h │ │ │ │ │ ├── Satisfy_24.h │ │ │ │ │ └── Yellowtail_32.h │ │ │ │ ├── Font16.c │ │ │ │ ├── Font16.h │ │ │ │ ├── Font32rle.c │ │ │ │ ├── Font32rle.h │ │ │ │ ├── Font64rle.c │ │ │ │ ├── Font64rle.h │ │ │ │ ├── Font72rle.c │ │ │ │ ├── Font72rle.h │ │ │ │ ├── Font72x53rle.c │ │ │ │ ├── Font72x53rle.h │ │ │ │ ├── Font7srle.c │ │ │ │ ├── Font7srle.h │ │ │ │ ├── GFXFF │ │ │ │ │ ├── FreeMono12pt7b.h │ │ │ │ │ ├── FreeMono18pt7b.h │ │ │ │ │ ├── FreeMono24pt7b.h │ │ │ │ │ ├── FreeMono9pt7b.h │ │ │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ │ │ ├── FreeSans12pt7b.h │ │ │ │ │ ├── FreeSans18pt7b.h │ │ │ │ │ ├── FreeSans24pt7b.h │ │ │ │ │ ├── FreeSans9pt7b.h │ │ │ │ │ ├── FreeSansBold12pt7b.h │ │ │ │ │ ├── FreeSansBold18pt7b.h │ │ │ │ │ ├── FreeSansBold24pt7b.h │ │ │ │ │ ├── FreeSansBold9pt7b.h │ │ │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ │ │ ├── FreeSerif12pt7b.h │ │ │ │ │ ├── FreeSerif18pt7b.h │ │ │ │ │ ├── FreeSerif24pt7b.h │ │ │ │ │ ├── FreeSerif9pt7b.h │ │ │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ │ │ ├── TomThumb.h │ │ │ │ │ ├── gfxfont.h │ │ │ │ │ ├── license.txt │ │ │ │ │ └── print.txt │ │ │ │ ├── TrueType │ │ │ │ │ └── Not_yet_supported.txt │ │ │ │ └── glcdfont.c │ │ │ ├── Kconfig │ │ │ ├── Processors │ │ │ │ ├── TFT_eSPI_ESP32.c │ │ │ │ ├── TFT_eSPI_ESP32.h │ │ │ │ ├── TFT_eSPI_ESP32_C3.c │ │ │ │ ├── TFT_eSPI_ESP32_C3.h │ │ │ │ ├── TFT_eSPI_ESP32_S3.c │ │ │ │ ├── TFT_eSPI_ESP32_S3.h │ │ │ │ ├── TFT_eSPI_ESP8266.c │ │ │ │ ├── TFT_eSPI_ESP8266.h │ │ │ │ ├── TFT_eSPI_Generic.c │ │ │ │ ├── TFT_eSPI_Generic.h │ │ │ │ ├── TFT_eSPI_RP2040.c │ │ │ │ ├── TFT_eSPI_RP2040.h │ │ │ │ ├── TFT_eSPI_STM32.c │ │ │ │ ├── TFT_eSPI_STM32.h │ │ │ │ ├── pio_16bit_parallel.pio.h │ │ │ │ ├── pio_8bit_parallel.pio.h │ │ │ │ ├── pio_SPI.pio.h │ │ │ │ └── pio_SPI_18bit.pio.h │ │ │ ├── README.md │ │ │ ├── README.txt │ │ │ ├── TFT_Drivers │ │ │ │ ├── EPD_Defines.h │ │ │ │ ├── GC9A01_Defines.h │ │ │ │ ├── GC9A01_Init.h │ │ │ │ ├── GC9A01_Rotation.h │ │ │ │ ├── HX8357B_Defines.h │ │ │ │ ├── HX8357B_Init.h │ │ │ │ ├── HX8357B_Rotation.h │ │ │ │ ├── HX8357C_Defines.h │ │ │ │ ├── HX8357C_Init.h │ │ │ │ ├── HX8357C_Rotation.h │ │ │ │ ├── HX8357D_Defines.h │ │ │ │ ├── HX8357D_Init.h │ │ │ │ ├── HX8357D_Rotation.h │ │ │ │ ├── ILI9163_Defines.h │ │ │ │ ├── ILI9163_Init.h │ │ │ │ ├── ILI9163_Rotation.h │ │ │ │ ├── ILI9225_Defines.h │ │ │ │ ├── ILI9225_Init.h │ │ │ │ ├── ILI9225_Rotation.h │ │ │ │ ├── ILI9341_Defines.h │ │ │ │ ├── ILI9341_Init.h │ │ │ │ ├── ILI9341_Rotation.h │ │ │ │ ├── ILI9481_Defines.h │ │ │ │ ├── ILI9481_Init.h │ │ │ │ ├── ILI9481_Rotation.h │ │ │ │ ├── ILI9486_Defines.h │ │ │ │ ├── ILI9486_Init.h │ │ │ │ ├── ILI9486_Rotation.h │ │ │ │ ├── ILI9488_Defines.h │ │ │ │ ├── ILI9488_Init.h │ │ │ │ ├── ILI9488_Rotation.h │ │ │ │ ├── R61581_Defines.h │ │ │ │ ├── R61581_Init.h │ │ │ │ ├── R61581_Rotation.h │ │ │ │ ├── RM68120_Defines.h │ │ │ │ ├── RM68120_Init.h │ │ │ │ ├── RM68120_Rotation.h │ │ │ │ ├── RM68140_Defines.h │ │ │ │ ├── RM68140_Init.h │ │ │ │ ├── RM68140_Rotation.h │ │ │ │ ├── S6D02A1_Defines.h │ │ │ │ ├── S6D02A1_Init.h │ │ │ │ ├── S6D02A1_Rotation.h │ │ │ │ ├── SSD1351_Defines.h │ │ │ │ ├── SSD1351_Init.h │ │ │ │ ├── SSD1351_Rotation.h │ │ │ │ ├── SSD1963_Defines.h │ │ │ │ ├── SSD1963_Init.h │ │ │ │ ├── SSD1963_Rotation.h │ │ │ │ ├── ST7735_Defines.h │ │ │ │ ├── ST7735_Init.h │ │ │ │ ├── ST7735_Rotation.h │ │ │ │ ├── ST7789_2_Defines.h │ │ │ │ ├── ST7789_2_Init.h │ │ │ │ ├── ST7789_2_Rotation.h │ │ │ │ ├── ST7789_Defines.h │ │ │ │ ├── ST7789_Init.h │ │ │ │ ├── ST7789_Rotation.h │ │ │ │ ├── ST7796_Defines.h │ │ │ │ ├── ST7796_Init.h │ │ │ │ └── ST7796_Rotation.h │ │ │ ├── TFT_config.h │ │ │ ├── TFT_eSPI.cpp │ │ │ ├── TFT_eSPI.h │ │ │ ├── Tools │ │ │ │ ├── Create_Smooth_Font │ │ │ │ │ └── Create_font │ │ │ │ │ │ ├── Create_font.pde │ │ │ │ │ │ ├── FontFiles │ │ │ │ │ │ └── Final-Frontier28.vlw │ │ │ │ │ │ └── data │ │ │ │ │ │ └── Final-Frontier.ttf │ │ │ │ ├── Screenshot_client │ │ │ │ │ └── Screenshot_client.pde │ │ │ │ └── bmp2array4bit │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bmp2array4bit.py │ │ │ │ │ └── star.bmp │ │ │ ├── User_Setup.h │ │ │ ├── User_Setup_Select.h │ │ │ ├── User_Setups │ │ │ │ ├── Setup100_RP2040_ILI9488_parallel.h │ │ │ │ ├── Setup101_RP2040_ILI9481_parallel.h │ │ │ │ ├── Setup102_RP2040_ILI9341_parallel.h │ │ │ │ ├── Setup103_RP2040_ILI9486_parallel.h │ │ │ │ ├── Setup104_RP2040_ST7796_parallel.h │ │ │ │ ├── Setup105_RP2040_ST7796_16bit_parallel.h │ │ │ │ ├── Setup106_RP2040_ILI9481_16bit_parallel.h │ │ │ │ ├── Setup107_RP2040_ILI9341_16bit_parallel.h │ │ │ │ ├── Setup10_RPi_touch_ILI9486.h │ │ │ │ ├── Setup11_RPi_touch_ILI9486.h │ │ │ │ ├── Setup12_M5Stack_Basic_Core.h │ │ │ │ ├── Setup135_ST7789.h │ │ │ │ ├── Setup136_LilyGo_TTV.h │ │ │ │ ├── Setup137_LilyGo_TDisplay_RP2040.h │ │ │ │ ├── Setup13_ILI9481_Parallel.h │ │ │ │ ├── Setup14_ILI9341_Parallel.h │ │ │ │ ├── Setup15_HX8357D.h │ │ │ │ ├── Setup16_ILI9488_Parallel.h │ │ │ │ ├── Setup17_ePaper.h │ │ │ │ ├── Setup18_ST7789.h │ │ │ │ ├── Setup19_RM68140_Parallel.h │ │ │ │ ├── Setup1_ILI9341.h │ │ │ │ ├── Setup200_GC9A01.h │ │ │ │ ├── Setup201_WT32_SC01.h │ │ │ │ ├── Setup202_SSD1351_128.h │ │ │ │ ├── Setup203_ST7789.h │ │ │ │ ├── Setup204_ESP32_TouchDown.h │ │ │ │ ├── Setup205_ESP32_TouchDown_S3.h │ │ │ │ ├── Setup20_ILI9488.h │ │ │ │ ├── Setup21_ILI9488.h │ │ │ │ ├── Setup22_TTGO_T4.h │ │ │ │ ├── Setup22_TTGO_T4_v1.3.h │ │ │ │ ├── Setup23_TTGO_TM.h │ │ │ │ ├── Setup24_ST7789.h │ │ │ │ ├── Setup25_TTGO_T_Display.h │ │ │ │ ├── Setup26_TTGO_T_Wristband.h │ │ │ │ ├── Setup27_RPi_ST7796_ESP32.h │ │ │ │ ├── Setup28_RPi_ST7796_ESP8266.h │ │ │ │ ├── Setup29_ILI9341_STM32.h │ │ │ │ ├── Setup2_ST7735.h │ │ │ │ ├── Setup301_BW16_ST7735.h │ │ │ │ ├── Setup30_ILI9341_Parallel_STM32.h │ │ │ │ ├── Setup31_ST7796_Parallel_STM32.h │ │ │ │ ├── Setup32_ILI9341_STM32F103.h │ │ │ │ ├── Setup33_RPi_ILI9486_STM32.h │ │ │ │ ├── Setup34_ILI9481_Parallel_STM32.h │ │ │ │ ├── Setup35_ILI9341_STM32_Port_Bus.h │ │ │ │ ├── Setup36_RPi_touch_ST7796.h │ │ │ │ ├── Setup3_ILI9163.h │ │ │ │ ├── Setup42_ILI9341_ESP32.h │ │ │ │ ├── Setup43_ST7735.h │ │ │ │ ├── Setup44_TTGO_CameraPlus.h │ │ │ │ ├── Setup45_TTGO_T_Watch.h │ │ │ │ ├── Setup46_GC9A01_ESP32.h │ │ │ │ ├── Setup47_ST7735.h │ │ │ │ ├── Setup4_S6D02A1.h │ │ │ │ ├── Setup50_SSD1963_Parallel.h │ │ │ │ ├── Setup51_LilyPi_ILI9481.h │ │ │ │ ├── Setup52_LilyPi_ST7796.h │ │ │ │ ├── Setup5_RPi_ILI9486.h │ │ │ │ ├── Setup60_RP2040_ILI9341.h │ │ │ │ ├── Setup61_RP2040_ILI9341_PIO_SPI.h │ │ │ │ ├── Setup62_RP2040_Nano_Connect_ILI9341.h │ │ │ │ ├── Setup6_RPi_Wr_ILI9486.h │ │ │ │ ├── Setup70_ESP32_S2_ILI9341.h │ │ │ │ ├── Setup70b_ESP32_S3_ILI9341.h │ │ │ │ ├── Setup70c_ESP32_C3_ILI9341.h │ │ │ │ ├── Setup70d_ILI9488_S3_Parallel.h │ │ │ │ ├── Setup71_ESP32_S2_ST7789.h │ │ │ │ ├── Setup72_ESP32_ST7789_172x320.h │ │ │ │ ├── Setup7_ST7735_128x128.h │ │ │ │ ├── Setup8_ILI9163_128x128.h │ │ │ │ ├── Setup9_ST7735_Overlap.h │ │ │ │ ├── SetupX_Template.h │ │ │ │ └── User_Custom_Fonts.h │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ └── license.txt │ │ └── TensorFlowLite_ESP32 │ │ │ ├── .piopm │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── library.properties │ │ │ ├── scripts │ │ │ └── sync_from_tflite_micro.sh │ │ │ └── src │ │ │ ├── TensorFlowLite_ESP32.h │ │ │ ├── bus │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── component.mk │ │ │ ├── i2c_bus.c │ │ │ ├── i2s_lcd_esp32_driver.c │ │ │ ├── i2s_lcd_esp32s2_driver.c │ │ │ ├── include │ │ │ │ ├── i2c_bus.h │ │ │ │ ├── i2s_lcd_driver.h │ │ │ │ └── spi_bus.h │ │ │ └── spi_bus.c │ │ │ ├── screen │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── component.mk │ │ │ ├── controller_driver │ │ │ │ ├── ili9341 │ │ │ │ │ ├── ili9341.c │ │ │ │ │ └── ili9341.h │ │ │ │ ├── ili9486 │ │ │ │ │ ├── ili9486.c │ │ │ │ │ └── ili9486.h │ │ │ │ ├── ili9488 │ │ │ │ │ ├── ili9488.c │ │ │ │ │ └── ili9488.h │ │ │ │ ├── ili9806 │ │ │ │ │ ├── ili9806.c │ │ │ │ │ └── ili9806.h │ │ │ │ ├── nt35510 │ │ │ │ │ ├── nt35510.c │ │ │ │ │ └── nt35510.h │ │ │ │ ├── rm68120 │ │ │ │ │ ├── rm68120.c │ │ │ │ │ └── rm68120.h │ │ │ │ ├── ssd1306 │ │ │ │ │ ├── ssd1306.c │ │ │ │ │ └── ssd1306.h │ │ │ │ ├── ssd1307 │ │ │ │ │ ├── ssd1307.c │ │ │ │ │ └── ssd1307.h │ │ │ │ ├── ssd1322 │ │ │ │ │ ├── ssd1322.c │ │ │ │ │ └── ssd1322.h │ │ │ │ ├── ssd1351 │ │ │ │ │ ├── ssd1351.c │ │ │ │ │ └── ssd1351.h │ │ │ │ ├── ssd1963 │ │ │ │ │ ├── ssd1963.c │ │ │ │ │ └── ssd1963.h │ │ │ │ ├── st7789 │ │ │ │ │ ├── st7789.c │ │ │ │ │ └── st7789.h │ │ │ │ └── st7796 │ │ │ │ │ ├── st7796.c │ │ │ │ │ └── st7796.h │ │ │ ├── interface_driver │ │ │ │ ├── scr_interface_driver.c │ │ │ │ └── scr_interface_driver.h │ │ │ ├── screen_driver.c │ │ │ ├── screen_driver.h │ │ │ └── screen_utility │ │ │ │ ├── interface_drv_def.h │ │ │ │ ├── screen_utility.c │ │ │ │ └── screen_utility.h │ │ │ ├── tensorflow │ │ │ └── lite │ │ │ │ ├── builtin_op_data.h │ │ │ │ ├── builtin_ops.h │ │ │ │ ├── c │ │ │ │ ├── builtin_op_data.h │ │ │ │ ├── c_api_types.h │ │ │ │ ├── common.cpp │ │ │ │ └── common.h │ │ │ │ ├── context_util.h │ │ │ │ ├── core │ │ │ │ └── api │ │ │ │ │ ├── error_reporter.cpp │ │ │ │ │ ├── error_reporter.h │ │ │ │ │ ├── flatbuffer_conversions.cpp │ │ │ │ │ ├── flatbuffer_conversions.h │ │ │ │ │ ├── op_resolver.cpp │ │ │ │ │ ├── op_resolver.h │ │ │ │ │ ├── tensor_utils.cpp │ │ │ │ │ └── tensor_utils.h │ │ │ │ ├── experimental │ │ │ │ └── microfrontend │ │ │ │ │ └── lib │ │ │ │ │ ├── bits.h │ │ │ │ │ ├── fft.cpp │ │ │ │ │ ├── fft.h │ │ │ │ │ ├── fft_util.cpp │ │ │ │ │ ├── fft_util.h │ │ │ │ │ ├── filterbank.c │ │ │ │ │ ├── filterbank.h │ │ │ │ │ ├── filterbank_util.c │ │ │ │ │ ├── filterbank_util.h │ │ │ │ │ ├── frontend.c │ │ │ │ │ ├── frontend.h │ │ │ │ │ ├── frontend_util.c │ │ │ │ │ ├── frontend_util.h │ │ │ │ │ ├── kiss_fft_common.h │ │ │ │ │ ├── kiss_fft_int16.cpp │ │ │ │ │ ├── kiss_fft_int16.h │ │ │ │ │ ├── log_lut.c │ │ │ │ │ ├── log_lut.h │ │ │ │ │ ├── log_scale.c │ │ │ │ │ ├── log_scale.h │ │ │ │ │ ├── log_scale_util.c │ │ │ │ │ ├── log_scale_util.h │ │ │ │ │ ├── noise_reduction.c │ │ │ │ │ ├── noise_reduction.h │ │ │ │ │ ├── noise_reduction_util.c │ │ │ │ │ ├── noise_reduction_util.h │ │ │ │ │ ├── pcan_gain_control.c │ │ │ │ │ ├── pcan_gain_control.h │ │ │ │ │ ├── pcan_gain_control_util.c │ │ │ │ │ ├── pcan_gain_control_util.h │ │ │ │ │ ├── window.c │ │ │ │ │ ├── window.h │ │ │ │ │ ├── window_util.c │ │ │ │ │ └── window_util.h │ │ │ │ ├── kernels │ │ │ │ ├── internal │ │ │ │ │ ├── common.h │ │ │ │ │ ├── compatibility.h │ │ │ │ │ ├── cppmath.h │ │ │ │ │ ├── max.h │ │ │ │ │ ├── min.h │ │ │ │ │ ├── optimized │ │ │ │ │ │ └── neon_check.h │ │ │ │ │ ├── portable_tensor.h │ │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ │ ├── quantization_util.cpp │ │ │ │ │ ├── quantization_util.h │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── add.h │ │ │ │ │ │ ├── add_n.h │ │ │ │ │ │ ├── arg_min_max.h │ │ │ │ │ │ ├── batch_matmul.h │ │ │ │ │ │ ├── batch_to_space_nd.h │ │ │ │ │ │ ├── binary_function.h │ │ │ │ │ │ ├── broadcast_args.h │ │ │ │ │ │ ├── broadcast_to.h │ │ │ │ │ │ ├── ceil.h │ │ │ │ │ │ ├── comparisons.h │ │ │ │ │ │ ├── concatenation.h │ │ │ │ │ │ ├── conv.h │ │ │ │ │ │ ├── cumsum.h │ │ │ │ │ │ ├── depth_to_space.h │ │ │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ │ │ ├── dequantize.h │ │ │ │ │ │ ├── elu.h │ │ │ │ │ │ ├── exp.h │ │ │ │ │ │ ├── fill.h │ │ │ │ │ │ ├── floor.h │ │ │ │ │ │ ├── floor_div.h │ │ │ │ │ │ ├── floor_mod.h │ │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ │ ├── hard_swish.h │ │ │ │ │ │ ├── integer_ops │ │ │ │ │ │ │ ├── add.h │ │ │ │ │ │ │ ├── conv.h │ │ │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ │ │ ├── l2normalization.h │ │ │ │ │ │ │ ├── logistic.h │ │ │ │ │ │ │ ├── mean.h │ │ │ │ │ │ │ ├── mul.h │ │ │ │ │ │ │ ├── pooling.h │ │ │ │ │ │ │ ├── tanh.h │ │ │ │ │ │ │ └── transpose_conv.h │ │ │ │ │ │ ├── l2normalization.h │ │ │ │ │ │ ├── leaky_relu.h │ │ │ │ │ │ ├── log_softmax.h │ │ │ │ │ │ ├── logistic.h │ │ │ │ │ │ ├── lstm_cell.h │ │ │ │ │ │ ├── maximum_minimum.h │ │ │ │ │ │ ├── mul.h │ │ │ │ │ │ ├── neg.h │ │ │ │ │ │ ├── pad.h │ │ │ │ │ │ ├── pooling.h │ │ │ │ │ │ ├── portable_tensor_utils.cpp │ │ │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ │ │ ├── portable_tensor_utils_impl.h │ │ │ │ │ │ ├── prelu.h │ │ │ │ │ │ ├── process_broadcast_shapes.h │ │ │ │ │ │ ├── quantize.h │ │ │ │ │ │ ├── reduce.h │ │ │ │ │ │ ├── requantize.h │ │ │ │ │ │ ├── resize_bilinear.h │ │ │ │ │ │ ├── resize_nearest_neighbor.h │ │ │ │ │ │ ├── round.h │ │ │ │ │ │ ├── slice.h │ │ │ │ │ │ ├── softmax.h │ │ │ │ │ │ ├── space_to_batch_nd.h │ │ │ │ │ │ ├── space_to_depth.h │ │ │ │ │ │ ├── strided_slice.h │ │ │ │ │ │ ├── sub.h │ │ │ │ │ │ ├── tanh.h │ │ │ │ │ │ ├── transpose.h │ │ │ │ │ │ └── transpose_conv.h │ │ │ │ │ ├── runtime_shape.h │ │ │ │ │ ├── strided_slice_logic.h │ │ │ │ │ ├── tensor_ctypes.h │ │ │ │ │ └── types.h │ │ │ │ ├── kernel_util.cpp │ │ │ │ ├── kernel_util.h │ │ │ │ ├── op_macros.h │ │ │ │ └── padding.h │ │ │ │ ├── micro │ │ │ │ ├── all_ops_resolver.cpp │ │ │ │ ├── all_ops_resolver.h │ │ │ │ ├── arena_allocator │ │ │ │ │ ├── ibuffer_allocator.h │ │ │ │ │ ├── non_persistent_arena_buffer_allocator.cpp │ │ │ │ │ ├── non_persistent_arena_buffer_allocator.h │ │ │ │ │ ├── recording_simple_memory_allocator.cpp │ │ │ │ │ ├── recording_simple_memory_allocator.h │ │ │ │ │ ├── simple_memory_allocator.cpp │ │ │ │ │ └── simple_memory_allocator.h │ │ │ │ ├── compatibility.h │ │ │ │ ├── debug_log.cpp │ │ │ │ ├── debug_log.h │ │ │ │ ├── fake_micro_context.cpp │ │ │ │ ├── fake_micro_context.h │ │ │ │ ├── flatbuffer_utils.cpp │ │ │ │ ├── flatbuffer_utils.h │ │ │ │ ├── kernels │ │ │ │ │ ├── activation_utils.h │ │ │ │ │ ├── activations.cpp │ │ │ │ │ ├── activations.h │ │ │ │ │ ├── activations_common.cpp │ │ │ │ │ ├── add.cpp │ │ │ │ │ ├── add.h │ │ │ │ │ ├── add_common.cpp │ │ │ │ │ ├── add_n.cpp │ │ │ │ │ ├── arg_min_max.cpp │ │ │ │ │ ├── assign_variable.cpp │ │ │ │ │ ├── batch_to_space_nd.cpp │ │ │ │ │ ├── broadcast_args.cpp │ │ │ │ │ ├── broadcast_to.cpp │ │ │ │ │ ├── call_once.cpp │ │ │ │ │ ├── cast.cpp │ │ │ │ │ ├── ceil.cpp │ │ │ │ │ ├── circular_buffer.cpp │ │ │ │ │ ├── circular_buffer.h │ │ │ │ │ ├── circular_buffer_common.cpp │ │ │ │ │ ├── circular_buffer_flexbuffers_generated_data.h │ │ │ │ │ ├── comparisons.cpp │ │ │ │ │ ├── concatenation.cpp │ │ │ │ │ ├── conv.cpp │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── conv_common.cpp │ │ │ │ │ ├── conv_test.h │ │ │ │ │ ├── cumsum.cpp │ │ │ │ │ ├── depth_to_space.cpp │ │ │ │ │ ├── depthwise_conv.cpp │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── depthwise_conv_common.cpp │ │ │ │ │ ├── dequantize.cpp │ │ │ │ │ ├── dequantize.h │ │ │ │ │ ├── dequantize_common.cpp │ │ │ │ │ ├── detection_postprocess.cpp │ │ │ │ │ ├── detection_postprocess_flexbuffers_generated_data.h │ │ │ │ │ ├── elementwise.cpp │ │ │ │ │ ├── elu.cpp │ │ │ │ │ ├── esp_nn │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── ethosu.cpp │ │ │ │ │ ├── ethosu.h │ │ │ │ │ ├── exp.cpp │ │ │ │ │ ├── expand_dims.cpp │ │ │ │ │ ├── fill.cpp │ │ │ │ │ ├── floor.cpp │ │ │ │ │ ├── floor_div.cpp │ │ │ │ │ ├── floor_mod.cpp │ │ │ │ │ ├── fully_connected.cpp │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── fully_connected_common.cpp │ │ │ │ │ ├── gather.cpp │ │ │ │ │ ├── gather_nd.cpp │ │ │ │ │ ├── hard_swish.cpp │ │ │ │ │ ├── hard_swish.h │ │ │ │ │ ├── hard_swish_common.cpp │ │ │ │ │ ├── if.cpp │ │ │ │ │ ├── kernel_runner.cpp │ │ │ │ │ ├── kernel_runner.h │ │ │ │ │ ├── kernel_util.cpp │ │ │ │ │ ├── kernel_util.h │ │ │ │ │ ├── l2_pool_2d.cpp │ │ │ │ │ ├── l2norm.cpp │ │ │ │ │ ├── leaky_relu.cpp │ │ │ │ │ ├── leaky_relu.h │ │ │ │ │ ├── leaky_relu_common.cpp │ │ │ │ │ ├── log_softmax.cpp │ │ │ │ │ ├── logical.cpp │ │ │ │ │ ├── logical.h │ │ │ │ │ ├── logical_common.cpp │ │ │ │ │ ├── logistic.cpp │ │ │ │ │ ├── logistic.h │ │ │ │ │ ├── logistic_common.cpp │ │ │ │ │ ├── lstm_eval.cpp │ │ │ │ │ ├── lstm_eval.h │ │ │ │ │ ├── lstm_shared.h │ │ │ │ │ ├── maximum_minimum.cpp │ │ │ │ │ ├── micro_ops.h │ │ │ │ │ ├── micro_tensor_utils.cpp │ │ │ │ │ ├── micro_tensor_utils.h │ │ │ │ │ ├── micro_utils.h │ │ │ │ │ ├── mirror_pad.cpp │ │ │ │ │ ├── mul.cpp │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── mul_common.cpp │ │ │ │ │ ├── neg.cpp │ │ │ │ │ ├── pack.cpp │ │ │ │ │ ├── pad.cpp │ │ │ │ │ ├── pooling.cpp │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── pooling_common.cpp │ │ │ │ │ ├── prelu.cpp │ │ │ │ │ ├── prelu.h │ │ │ │ │ ├── prelu_common.cpp │ │ │ │ │ ├── quantize.cpp │ │ │ │ │ ├── quantize.h │ │ │ │ │ ├── quantize_common.cpp │ │ │ │ │ ├── read_variable.cpp │ │ │ │ │ ├── reduce.cpp │ │ │ │ │ ├── reshape.cpp │ │ │ │ │ ├── resize_bilinear.cpp │ │ │ │ │ ├── resize_nearest_neighbor.cpp │ │ │ │ │ ├── round.cpp │ │ │ │ │ ├── shape.cpp │ │ │ │ │ ├── slice.cpp │ │ │ │ │ ├── softmax.cpp │ │ │ │ │ ├── softmax.h │ │ │ │ │ ├── softmax_common.cpp │ │ │ │ │ ├── space_to_batch_nd.cpp │ │ │ │ │ ├── space_to_depth.cpp │ │ │ │ │ ├── split.cpp │ │ │ │ │ ├── split_v.cpp │ │ │ │ │ ├── squared_difference.cpp │ │ │ │ │ ├── squeeze.cpp │ │ │ │ │ ├── strided_slice.cpp │ │ │ │ │ ├── sub.cpp │ │ │ │ │ ├── sub.h │ │ │ │ │ ├── sub_common.cpp │ │ │ │ │ ├── svdf.cpp │ │ │ │ │ ├── svdf.h │ │ │ │ │ ├── svdf_common.cpp │ │ │ │ │ ├── tanh.cpp │ │ │ │ │ ├── transpose.cpp │ │ │ │ │ ├── transpose_conv.cpp │ │ │ │ │ ├── unidirectional_sequence_lstm.cpp │ │ │ │ │ ├── unidirectional_sequence_lstm_test_config.h │ │ │ │ │ ├── unpack.cpp │ │ │ │ │ ├── var_handle.cpp │ │ │ │ │ ├── while.cpp │ │ │ │ │ └── zeros_like.cpp │ │ │ │ ├── memory_helpers.cpp │ │ │ │ ├── memory_helpers.h │ │ │ │ ├── memory_planner │ │ │ │ │ ├── greedy_memory_planner.cpp │ │ │ │ │ ├── greedy_memory_planner.h │ │ │ │ │ ├── linear_memory_planner.cpp │ │ │ │ │ ├── linear_memory_planner.h │ │ │ │ │ ├── memory_plan_struct.h │ │ │ │ │ ├── micro_memory_planner.h │ │ │ │ │ ├── non_persistent_buffer_planner_shim.cpp │ │ │ │ │ └── non_persistent_buffer_planner_shim.h │ │ │ │ ├── micro_allocation_info.cpp │ │ │ │ ├── micro_allocation_info.h │ │ │ │ ├── micro_allocator.cpp │ │ │ │ ├── micro_allocator.h │ │ │ │ ├── micro_arena_constants.h │ │ │ │ ├── micro_context.cpp │ │ │ │ ├── micro_context.h │ │ │ │ ├── micro_error_reporter.cpp │ │ │ │ ├── micro_error_reporter.h │ │ │ │ ├── micro_graph.cpp │ │ │ │ ├── micro_graph.h │ │ │ │ ├── micro_interpreter.cpp │ │ │ │ ├── micro_interpreter.h │ │ │ │ ├── micro_mutable_op_resolver.h │ │ │ │ ├── micro_op_resolver.h │ │ │ │ ├── micro_profiler.cpp │ │ │ │ ├── micro_profiler.h │ │ │ │ ├── micro_resource_variable.cpp │ │ │ │ ├── micro_resource_variable.h │ │ │ │ ├── micro_string.cpp │ │ │ │ ├── micro_string.h │ │ │ │ ├── micro_time.cpp │ │ │ │ ├── micro_time.h │ │ │ │ ├── micro_utils.cpp │ │ │ │ ├── micro_utils.h │ │ │ │ ├── mock_micro_graph.cpp │ │ │ │ ├── mock_micro_graph.h │ │ │ │ ├── recording_micro_allocator.cpp │ │ │ │ ├── recording_micro_allocator.h │ │ │ │ ├── recording_micro_interpreter.h │ │ │ │ ├── system_setup.cpp │ │ │ │ ├── system_setup.h │ │ │ │ ├── test_helper_custom_ops.cpp │ │ │ │ ├── test_helper_custom_ops.h │ │ │ │ ├── test_helpers.cpp │ │ │ │ └── test_helpers.h │ │ │ │ ├── portable_type_to_tflitetype.h │ │ │ │ └── schema │ │ │ │ ├── schema_generated.h │ │ │ │ ├── schema_utils.cpp │ │ │ │ └── schema_utils.h │ │ │ ├── third_party │ │ │ ├── flatbuffers │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── allocator.h │ │ │ │ ├── array.h │ │ │ │ ├── base.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffer_ref.h │ │ │ │ ├── default_allocator.h │ │ │ │ ├── detached_buffer.h │ │ │ │ ├── flatbuffer_builder.h │ │ │ │ ├── flatbuffers.h │ │ │ │ ├── flexbuffers.h │ │ │ │ ├── stl_emulation.h │ │ │ │ ├── string.h │ │ │ │ ├── struct.h │ │ │ │ ├── table.h │ │ │ │ ├── util.h │ │ │ │ ├── vector.h │ │ │ │ ├── vector_downward.h │ │ │ │ └── verifier.h │ │ │ ├── gemmlowp │ │ │ │ ├── LICENSE │ │ │ │ ├── fixedpoint │ │ │ │ │ ├── fixedpoint.h │ │ │ │ │ ├── fixedpoint_neon.h │ │ │ │ │ └── fixedpoint_sse.h │ │ │ │ └── internal │ │ │ │ │ └── detect_platform.h │ │ │ ├── kissfft │ │ │ │ ├── COPYING │ │ │ │ ├── _kiss_fft_guts.h │ │ │ │ ├── kiss_fft.c │ │ │ │ ├── kiss_fft.h │ │ │ │ └── tools │ │ │ │ │ ├── kiss_fftr.c │ │ │ │ │ └── kiss_fftr.h │ │ │ └── ruy │ │ │ │ └── ruy │ │ │ │ └── profiler │ │ │ │ └── instrumentation.h │ │ │ └── utility.h │ ├── platformio.ini │ ├── src │ │ ├── Number.code-workspace │ │ ├── constants.cpp │ │ ├── interpolation.cpp │ │ ├── main.cpp │ │ ├── model.cpp │ │ └── output_handler.cpp │ └── test │ │ └── README └── 3.ProgressBar │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ └── settings.json │ ├── include │ ├── README │ ├── bar.h │ ├── constants.h │ ├── interpolation.h │ ├── main_functions.h │ ├── model.h │ └── output_handler.h │ ├── lib │ ├── Adafruit AMG88xx Library │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .piopm │ │ ├── Adafruit_AMG88xx.cpp │ │ ├── Adafruit_AMG88xx.h │ │ ├── README.md │ │ ├── examples │ │ │ ├── amg88xx_interrupt │ │ │ │ └── amg88xx_interrupt.ino │ │ │ ├── amg88xx_test │ │ │ │ └── amg88xx_test.ino │ │ │ ├── pixels_test │ │ │ │ └── pixels_test.ino │ │ │ ├── thermal_cam │ │ │ │ └── thermal_cam.ino │ │ │ ├── thermal_cam_featherwing │ │ │ │ ├── .mega2560.test.skip │ │ │ │ └── thermal_cam_featherwing.ino │ │ │ └── thermal_cam_interpolate │ │ │ │ ├── .mega2560.test.skip │ │ │ │ ├── .trinket_m0.test.skip │ │ │ │ ├── interpolation.cpp │ │ │ │ └── thermal_cam_interpolate.ino │ │ └── library.properties │ ├── Adafruit BusIO │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .piopm │ │ ├── Adafruit_BusIO_Register.cpp │ │ ├── Adafruit_BusIO_Register.h │ │ ├── Adafruit_I2CDevice.cpp │ │ ├── Adafruit_I2CDevice.h │ │ ├── Adafruit_I2CRegister.h │ │ ├── Adafruit_SPIDevice.cpp │ │ ├── Adafruit_SPIDevice.h │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.mk │ │ ├── examples │ │ │ ├── i2c_address_detect │ │ │ │ └── i2c_address_detect.ino │ │ │ ├── i2c_readwrite │ │ │ │ └── i2c_readwrite.ino │ │ │ ├── i2c_registers │ │ │ │ └── i2c_registers.ino │ │ │ ├── i2corspi_register │ │ │ │ └── i2corspi_register.ino │ │ │ ├── spi_modetest │ │ │ │ └── spi_modetest.ino │ │ │ ├── spi_readwrite │ │ │ │ └── spi_readwrite.ino │ │ │ ├── spi_register_bits │ │ │ │ └── spi_register_bits.ino │ │ │ └── spi_registers │ │ │ │ └── spi_registers.ino │ │ └── library.properties │ ├── Adafruit GFX Library │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .gitignore │ │ ├── .piopm │ │ ├── Adafruit_GFX.cpp │ │ ├── Adafruit_GFX.h │ │ ├── Adafruit_GrayOLED.cpp │ │ ├── Adafruit_GrayOLED.h │ │ ├── Adafruit_SPITFT.cpp │ │ ├── Adafruit_SPITFT.h │ │ ├── Adafruit_SPITFT_Macros.h │ │ ├── CMakeLists.txt │ │ ├── Fonts │ │ │ ├── FreeMono12pt7b.h │ │ │ ├── FreeMono18pt7b.h │ │ │ ├── FreeMono24pt7b.h │ │ │ ├── FreeMono9pt7b.h │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ ├── FreeSans12pt7b.h │ │ │ ├── FreeSans18pt7b.h │ │ │ ├── FreeSans24pt7b.h │ │ │ ├── FreeSans9pt7b.h │ │ │ ├── FreeSansBold12pt7b.h │ │ │ ├── FreeSansBold18pt7b.h │ │ │ ├── FreeSansBold24pt7b.h │ │ │ ├── FreeSansBold9pt7b.h │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ ├── FreeSerif12pt7b.h │ │ │ ├── FreeSerif18pt7b.h │ │ │ ├── FreeSerif24pt7b.h │ │ │ ├── FreeSerif9pt7b.h │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ ├── Org_01.h │ │ │ ├── Picopixel.h │ │ │ ├── Tiny3x3a2pt7b.h │ │ │ └── TomThumb.h │ │ ├── README.md │ │ ├── component.mk │ │ ├── examples │ │ │ ├── GFXcanvas │ │ │ │ ├── GFXcanvas.ino │ │ │ │ ├── GFXcanvasSerialDemo.cpp │ │ │ │ └── GFXcanvasSerialDemo.h │ │ │ └── mock_ili9341 │ │ │ │ └── mock_ili9341.ino │ │ ├── fontconvert │ │ │ ├── Makefile │ │ │ ├── bdf2adafruit.py │ │ │ ├── fontconvert.c │ │ │ ├── fontconvert_win.md │ │ │ └── makefonts.sh │ │ ├── gfxfont.h │ │ ├── glcdfont.c │ │ ├── library.properties │ │ └── license.txt │ ├── Adafruit ILI9341 │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .gitignore │ │ ├── .piopm │ │ ├── Adafruit_ILI9341.cpp │ │ ├── Adafruit_ILI9341.h │ │ ├── README.md │ │ ├── examples │ │ │ ├── breakouttouchpaint │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── breakouttouchpaint.ino │ │ │ ├── graphicstest │ │ │ │ └── graphicstest.ino │ │ │ ├── graphicstest_featherwing │ │ │ │ └── graphicstest_featherwing.ino │ │ │ ├── graphicstest_pyportal │ │ │ │ └── graphicstest_pyportal.ino │ │ │ ├── mandelbrot │ │ │ │ └── mandelbrot.ino │ │ │ ├── onoffbutton │ │ │ │ └── onoffbutton.ino │ │ │ ├── onoffbutton_breakout │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── onoffbutton_breakout.ino │ │ │ ├── pictureEmbed │ │ │ │ ├── .leonardo.test.skip │ │ │ │ ├── dragon.h │ │ │ │ └── pictureEmbed.ino │ │ │ ├── pyportal_boing │ │ │ │ ├── .pyportal.test.only │ │ │ │ ├── graphics.h │ │ │ │ └── pyportal_boing.ino │ │ │ ├── touchpaint │ │ │ │ └── touchpaint.ino │ │ │ ├── touchpaint_featherwing │ │ │ │ └── touchpaint_featherwing.ino │ │ │ └── touchpaint_pyportal │ │ │ │ ├── .pyportal.test.only │ │ │ │ └── touchpaint_pyportal.ino │ │ └── library.properties │ ├── Adafruit ST7735 and ST7789 Library │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .gitignore │ │ ├── .piopm │ │ ├── Adafruit_ST7735.cpp │ │ ├── Adafruit_ST7735.h │ │ ├── Adafruit_ST7789.cpp │ │ ├── Adafruit_ST7789.h │ │ ├── Adafruit_ST77xx.cpp │ │ ├── Adafruit_ST77xx.h │ │ ├── README.txt │ │ ├── examples │ │ │ ├── displayOnOffTest │ │ │ │ └── displayOnOffTest.ino │ │ │ ├── graphicstest │ │ │ │ ├── .cpb.test.skip │ │ │ │ └── graphicstest.ino │ │ │ ├── graphicstest_feather_esp32s2_tft │ │ │ │ ├── .feather_esp32s2_tft.test.only │ │ │ │ └── graphicstest_feather_esp32s2_tft.ino │ │ │ ├── graphicstest_hallowing_m0 │ │ │ │ ├── .hallowing_m0.test.only │ │ │ │ └── graphicstest_hallowing_m0.ino │ │ │ ├── graphicstest_hallowing_m4 │ │ │ │ ├── .hallowing_m4.test.only │ │ │ │ └── graphicstest_hallowing_m4.ino │ │ │ ├── graphicstest_pybadge_pygamer │ │ │ │ ├── .pybadge.test.only │ │ │ │ ├── .pygamer.test.only │ │ │ │ └── graphicstest_pybadge_pygamer.ino │ │ │ ├── graphicstest_st7789 │ │ │ │ ├── .cpb.test.skip │ │ │ │ └── graphicstest_st7789.ino │ │ │ ├── graphicstest_tft_gizmo │ │ │ │ ├── .cplayClassic.test.skip │ │ │ │ ├── .due.test.skip │ │ │ │ ├── .esp32.test.skip │ │ │ │ ├── .esp8266.test.skip │ │ │ │ ├── .leonardo.test.skip │ │ │ │ ├── .mega2560.test.skip │ │ │ │ ├── .uno.test.skip │ │ │ │ └── graphicstest_tft_gizmo.ino │ │ │ ├── miniTFTWing │ │ │ │ ├── basic │ │ │ │ │ └── basic.ino │ │ │ │ └── graphicstest │ │ │ │ │ └── graphicstest.ino │ │ │ ├── rotationtest │ │ │ │ └── rotationtest.ino │ │ │ ├── seesaw_shield18_test │ │ │ │ ├── .leonardo.test.skip │ │ │ │ └── seesaw_shield18_test.ino │ │ │ └── shieldtest │ │ │ │ └── shieldtest.ino │ │ └── library.properties │ ├── Adafruit STMPE610 │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .gitignore │ │ ├── .piopm │ │ ├── Adafruit_STMPE610.cpp │ │ ├── Adafruit_STMPE610.h │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ └── board.jpg │ │ ├── code-of-conduct.md │ │ ├── examples │ │ │ └── TouchTest │ │ │ │ └── TouchTest.ino │ │ └── library.properties │ ├── Adafruit TouchScreen │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .piopm │ │ ├── README.md │ │ ├── TouchScreen.cpp │ │ ├── TouchScreen.h │ │ ├── code-of-conduct.md │ │ ├── examples │ │ │ ├── touchscreendemo │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── touchscreendemo.ino │ │ │ └── touchscreendemoshield │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── touchscreendemoshield.ino │ │ ├── library.properties │ │ └── license.txt │ ├── Adafruit seesaw Library │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .piopm │ │ ├── Adafruit_Crickit.cpp │ │ ├── Adafruit_Crickit.h │ │ ├── Adafruit_NeoKey_1x4.cpp │ │ ├── Adafruit_NeoKey_1x4.h │ │ ├── Adafruit_NeoTrellis.cpp │ │ ├── Adafruit_NeoTrellis.h │ │ ├── Adafruit_TFTShield18.cpp │ │ ├── Adafruit_TFTShield18.h │ │ ├── Adafruit_miniTFTWing.cpp │ │ ├── Adafruit_miniTFTWing.h │ │ ├── Adafruit_seesaw.cpp │ │ ├── Adafruit_seesaw.h │ │ ├── Doxyfile │ │ ├── README.md │ │ ├── examples │ │ │ ├── Crickit │ │ │ │ ├── basic │ │ │ │ │ └── basic.ino │ │ │ │ ├── cap_touch_demo │ │ │ │ │ └── cap_touch_demo.ino │ │ │ │ ├── drive │ │ │ │ │ ├── more_drivers │ │ │ │ │ │ └── more_drivers.ino │ │ │ │ │ └── test_drive │ │ │ │ │ │ └── test_drive.ino │ │ │ │ ├── fulltest │ │ │ │ │ └── fulltest.ino │ │ │ │ ├── motor │ │ │ │ │ └── dual_motor │ │ │ │ │ │ └── dual_motor.ino │ │ │ │ ├── servo │ │ │ │ │ ├── more_servos │ │ │ │ │ │ └── more_servos.ino │ │ │ │ │ └── test_servo │ │ │ │ │ │ └── test_servo.ino │ │ │ │ └── signal │ │ │ │ │ └── test_signal │ │ │ │ │ └── test_signal.ino │ │ │ ├── EEPROM │ │ │ │ └── EEPROM.ino │ │ │ ├── LEDArcade_1x4 │ │ │ │ └── LEDArcade_1x4.ino │ │ │ ├── NeoKey_1x4 │ │ │ │ ├── basic │ │ │ │ │ └── basic.ino │ │ │ │ ├── basic_callback │ │ │ │ │ └── basic_callback.ino │ │ │ │ ├── basic_multikey │ │ │ │ │ └── basic_multikey.ino │ │ │ │ └── basic_neoswirl │ │ │ │ │ └── basic_neoswirl.ino │ │ │ ├── NeoPixel │ │ │ │ └── NeoPixel_strandtest │ │ │ │ │ └── NeoPixel_strandtest.ino │ │ │ ├── NeoSlider │ │ │ │ ├── Dual_NeoSlider │ │ │ │ │ └── Dual_NeoSlider.ino │ │ │ │ └── NeoSlider │ │ │ │ │ └── NeoSlider.ino │ │ │ ├── NeoTrellis │ │ │ │ ├── basic │ │ │ │ │ └── basic.ino │ │ │ │ ├── interrupt │ │ │ │ │ └── interrupt.ino │ │ │ │ ├── multitrellis │ │ │ │ │ └── basic │ │ │ │ │ │ └── basic.ino │ │ │ │ ├── pattern_game │ │ │ │ │ └── pattern_game.ino │ │ │ │ └── ripples │ │ │ │ │ └── ripples.ino │ │ │ ├── analog │ │ │ │ ├── Fade │ │ │ │ │ └── Fade.ino │ │ │ │ └── analogRead │ │ │ │ │ └── analogRead.ino │ │ │ ├── audio_spectrum │ │ │ │ └── Audio_Spectrum │ │ │ │ │ └── Audio_Spectrum.ino │ │ │ ├── communication │ │ │ │ └── UART_loopback │ │ │ │ │ └── UART_loopback.ino │ │ │ ├── digital │ │ │ │ ├── attiny_blink │ │ │ │ │ └── attiny_blink.ino │ │ │ │ ├── blink │ │ │ │ │ └── blink.ino │ │ │ │ ├── gpio_interrupts │ │ │ │ │ └── gpio_interrupts.ino │ │ │ │ ├── multiblink │ │ │ │ │ └── multiblink.ino │ │ │ │ └── multiread │ │ │ │ │ └── multiread.ino │ │ │ ├── encoder │ │ │ │ ├── encoder_basic │ │ │ │ │ └── encoder_basic.ino │ │ │ │ └── multiple_encoders │ │ │ │ │ └── multiple_encoders.ino │ │ │ ├── joy_featherwing │ │ │ │ ├── joy_featherwing_ESP32 │ │ │ │ │ ├── .esp32.test.only │ │ │ │ │ └── joy_featherwing_ESP32.ino │ │ │ │ ├── joy_featherwing_example │ │ │ │ │ └── joy_featherwing_example.ino │ │ │ │ └── joy_wing_oled │ │ │ │ │ └── joy_wing_oled.ino │ │ │ └── soil_sensor │ │ │ │ └── soilsensor_example │ │ │ │ └── soilsensor_example.ino │ │ ├── library.properties │ │ ├── seesaw_motor.h │ │ ├── seesaw_neopixel.cpp │ │ ├── seesaw_neopixel.h │ │ ├── seesaw_servo.cpp │ │ ├── seesaw_servo.h │ │ ├── seesaw_spectrum.cpp │ │ └── seesaw_spectrum.h │ ├── README │ ├── TFT_eSPI │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ └── issue-template.md │ │ ├── .gitignore │ │ ├── .piopm │ │ ├── CMakeLists.txt │ │ ├── Extensions │ │ │ ├── Button.cpp │ │ │ ├── Button.h │ │ │ ├── Smooth_font.cpp │ │ │ ├── Smooth_font.h │ │ │ ├── Sprite.cpp │ │ │ ├── Sprite.h │ │ │ ├── Touch.cpp │ │ │ └── Touch.h │ │ ├── Fonts │ │ │ ├── Custom │ │ │ │ ├── Orbitron_Light_24.h │ │ │ │ ├── Orbitron_Light_32.h │ │ │ │ ├── Roboto_Thin_24.h │ │ │ │ ├── Satisfy_24.h │ │ │ │ └── Yellowtail_32.h │ │ │ ├── Font16.c │ │ │ ├── Font16.h │ │ │ ├── Font32rle.c │ │ │ ├── Font32rle.h │ │ │ ├── Font64rle.c │ │ │ ├── Font64rle.h │ │ │ ├── Font72rle.c │ │ │ ├── Font72rle.h │ │ │ ├── Font72x53rle.c │ │ │ ├── Font72x53rle.h │ │ │ ├── Font7srle.c │ │ │ ├── Font7srle.h │ │ │ ├── GFXFF │ │ │ │ ├── FreeMono12pt7b.h │ │ │ │ ├── FreeMono18pt7b.h │ │ │ │ ├── FreeMono24pt7b.h │ │ │ │ ├── FreeMono9pt7b.h │ │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ │ ├── FreeSans12pt7b.h │ │ │ │ ├── FreeSans18pt7b.h │ │ │ │ ├── FreeSans24pt7b.h │ │ │ │ ├── FreeSans9pt7b.h │ │ │ │ ├── FreeSansBold12pt7b.h │ │ │ │ ├── FreeSansBold18pt7b.h │ │ │ │ ├── FreeSansBold24pt7b.h │ │ │ │ ├── FreeSansBold9pt7b.h │ │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ │ ├── FreeSerif12pt7b.h │ │ │ │ ├── FreeSerif18pt7b.h │ │ │ │ ├── FreeSerif24pt7b.h │ │ │ │ ├── FreeSerif9pt7b.h │ │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ │ ├── TomThumb.h │ │ │ │ ├── gfxfont.h │ │ │ │ ├── license.txt │ │ │ │ └── print.txt │ │ │ ├── TrueType │ │ │ │ └── Not_yet_supported.txt │ │ │ └── glcdfont.c │ │ ├── Kconfig │ │ ├── Processors │ │ │ ├── TFT_eSPI_ESP32.c │ │ │ ├── TFT_eSPI_ESP32.h │ │ │ ├── TFT_eSPI_ESP32_C3.c │ │ │ ├── TFT_eSPI_ESP32_C3.h │ │ │ ├── TFT_eSPI_ESP32_S3.c │ │ │ ├── TFT_eSPI_ESP32_S3.h │ │ │ ├── TFT_eSPI_ESP8266.c │ │ │ ├── TFT_eSPI_ESP8266.h │ │ │ ├── TFT_eSPI_Generic.c │ │ │ ├── TFT_eSPI_Generic.h │ │ │ ├── TFT_eSPI_RP2040.c │ │ │ ├── TFT_eSPI_RP2040.h │ │ │ ├── TFT_eSPI_STM32.c │ │ │ ├── TFT_eSPI_STM32.h │ │ │ ├── pio_16bit_parallel.pio.h │ │ │ ├── pio_8bit_parallel.pio.h │ │ │ ├── pio_SPI.pio.h │ │ │ └── pio_SPI_18bit.pio.h │ │ ├── README.md │ │ ├── README.txt │ │ ├── TFT_Drivers │ │ │ ├── EPD_Defines.h │ │ │ ├── GC9A01_Defines.h │ │ │ ├── GC9A01_Init.h │ │ │ ├── GC9A01_Rotation.h │ │ │ ├── HX8357B_Defines.h │ │ │ ├── HX8357B_Init.h │ │ │ ├── HX8357B_Rotation.h │ │ │ ├── HX8357C_Defines.h │ │ │ ├── HX8357C_Init.h │ │ │ ├── HX8357C_Rotation.h │ │ │ ├── HX8357D_Defines.h │ │ │ ├── HX8357D_Init.h │ │ │ ├── HX8357D_Rotation.h │ │ │ ├── ILI9163_Defines.h │ │ │ ├── ILI9163_Init.h │ │ │ ├── ILI9163_Rotation.h │ │ │ ├── ILI9225_Defines.h │ │ │ ├── ILI9225_Init.h │ │ │ ├── ILI9225_Rotation.h │ │ │ ├── ILI9341_Defines.h │ │ │ ├── ILI9341_Init.h │ │ │ ├── ILI9341_Rotation.h │ │ │ ├── ILI9481_Defines.h │ │ │ ├── ILI9481_Init.h │ │ │ ├── ILI9481_Rotation.h │ │ │ ├── ILI9486_Defines.h │ │ │ ├── ILI9486_Init.h │ │ │ ├── ILI9486_Rotation.h │ │ │ ├── ILI9488_Defines.h │ │ │ ├── ILI9488_Init.h │ │ │ ├── ILI9488_Rotation.h │ │ │ ├── R61581_Defines.h │ │ │ ├── R61581_Init.h │ │ │ ├── R61581_Rotation.h │ │ │ ├── RM68120_Defines.h │ │ │ ├── RM68120_Init.h │ │ │ ├── RM68120_Rotation.h │ │ │ ├── RM68140_Defines.h │ │ │ ├── RM68140_Init.h │ │ │ ├── RM68140_Rotation.h │ │ │ ├── S6D02A1_Defines.h │ │ │ ├── S6D02A1_Init.h │ │ │ ├── S6D02A1_Rotation.h │ │ │ ├── SSD1351_Defines.h │ │ │ ├── SSD1351_Init.h │ │ │ ├── SSD1351_Rotation.h │ │ │ ├── SSD1963_Defines.h │ │ │ ├── SSD1963_Init.h │ │ │ ├── SSD1963_Rotation.h │ │ │ ├── ST7735_Defines.h │ │ │ ├── ST7735_Init.h │ │ │ ├── ST7735_Rotation.h │ │ │ ├── ST7789_2_Defines.h │ │ │ ├── ST7789_2_Init.h │ │ │ ├── ST7789_2_Rotation.h │ │ │ ├── ST7789_Defines.h │ │ │ ├── ST7789_Init.h │ │ │ ├── ST7789_Rotation.h │ │ │ ├── ST7796_Defines.h │ │ │ ├── ST7796_Init.h │ │ │ └── ST7796_Rotation.h │ │ ├── TFT_config.h │ │ ├── TFT_eSPI.cpp │ │ ├── TFT_eSPI.h │ │ ├── Tools │ │ │ ├── Create_Smooth_Font │ │ │ │ └── Create_font │ │ │ │ │ ├── Create_font.pde │ │ │ │ │ ├── FontFiles │ │ │ │ │ └── Final-Frontier28.vlw │ │ │ │ │ └── data │ │ │ │ │ └── Final-Frontier.ttf │ │ │ ├── Screenshot_client │ │ │ │ └── Screenshot_client.pde │ │ │ └── bmp2array4bit │ │ │ │ ├── README.md │ │ │ │ ├── bmp2array4bit.py │ │ │ │ └── star.bmp │ │ ├── User_Setup.h │ │ ├── User_Setup_Select.h │ │ ├── User_Setups │ │ │ ├── Setup100_RP2040_ILI9488_parallel.h │ │ │ ├── Setup101_RP2040_ILI9481_parallel.h │ │ │ ├── Setup102_RP2040_ILI9341_parallel.h │ │ │ ├── Setup103_RP2040_ILI9486_parallel.h │ │ │ ├── Setup104_RP2040_ST7796_parallel.h │ │ │ ├── Setup105_RP2040_ST7796_16bit_parallel.h │ │ │ ├── Setup106_RP2040_ILI9481_16bit_parallel.h │ │ │ ├── Setup107_RP2040_ILI9341_16bit_parallel.h │ │ │ ├── Setup10_RPi_touch_ILI9486.h │ │ │ ├── Setup11_RPi_touch_ILI9486.h │ │ │ ├── Setup12_M5Stack_Basic_Core.h │ │ │ ├── Setup135_ST7789.h │ │ │ ├── Setup136_LilyGo_TTV.h │ │ │ ├── Setup137_LilyGo_TDisplay_RP2040.h │ │ │ ├── Setup13_ILI9481_Parallel.h │ │ │ ├── Setup14_ILI9341_Parallel.h │ │ │ ├── Setup15_HX8357D.h │ │ │ ├── Setup16_ILI9488_Parallel.h │ │ │ ├── Setup17_ePaper.h │ │ │ ├── Setup18_ST7789.h │ │ │ ├── Setup19_RM68140_Parallel.h │ │ │ ├── Setup1_ILI9341.h │ │ │ ├── Setup200_GC9A01.h │ │ │ ├── Setup201_WT32_SC01.h │ │ │ ├── Setup202_SSD1351_128.h │ │ │ ├── Setup203_ST7789.h │ │ │ ├── Setup204_ESP32_TouchDown.h │ │ │ ├── Setup205_ESP32_TouchDown_S3.h │ │ │ ├── Setup20_ILI9488.h │ │ │ ├── Setup21_ILI9488.h │ │ │ ├── Setup22_TTGO_T4.h │ │ │ ├── Setup22_TTGO_T4_v1.3.h │ │ │ ├── Setup23_TTGO_TM.h │ │ │ ├── Setup24_ST7789.h │ │ │ ├── Setup25_TTGO_T_Display.h │ │ │ ├── Setup26_TTGO_T_Wristband.h │ │ │ ├── Setup27_RPi_ST7796_ESP32.h │ │ │ ├── Setup28_RPi_ST7796_ESP8266.h │ │ │ ├── Setup29_ILI9341_STM32.h │ │ │ ├── Setup2_ST7735.h │ │ │ ├── Setup301_BW16_ST7735.h │ │ │ ├── Setup30_ILI9341_Parallel_STM32.h │ │ │ ├── Setup31_ST7796_Parallel_STM32.h │ │ │ ├── Setup32_ILI9341_STM32F103.h │ │ │ ├── Setup33_RPi_ILI9486_STM32.h │ │ │ ├── Setup34_ILI9481_Parallel_STM32.h │ │ │ ├── Setup35_ILI9341_STM32_Port_Bus.h │ │ │ ├── Setup36_RPi_touch_ST7796.h │ │ │ ├── Setup3_ILI9163.h │ │ │ ├── Setup42_ILI9341_ESP32.h │ │ │ ├── Setup43_ST7735.h │ │ │ ├── Setup44_TTGO_CameraPlus.h │ │ │ ├── Setup45_TTGO_T_Watch.h │ │ │ ├── Setup46_GC9A01_ESP32.h │ │ │ ├── Setup47_ST7735.h │ │ │ ├── Setup4_S6D02A1.h │ │ │ ├── Setup50_SSD1963_Parallel.h │ │ │ ├── Setup51_LilyPi_ILI9481.h │ │ │ ├── Setup52_LilyPi_ST7796.h │ │ │ ├── Setup5_RPi_ILI9486.h │ │ │ ├── Setup60_RP2040_ILI9341.h │ │ │ ├── Setup61_RP2040_ILI9341_PIO_SPI.h │ │ │ ├── Setup62_RP2040_Nano_Connect_ILI9341.h │ │ │ ├── Setup6_RPi_Wr_ILI9486.h │ │ │ ├── Setup70_ESP32_S2_ILI9341.h │ │ │ ├── Setup70b_ESP32_S3_ILI9341.h │ │ │ ├── Setup70c_ESP32_C3_ILI9341.h │ │ │ ├── Setup70d_ILI9488_S3_Parallel.h │ │ │ ├── Setup71_ESP32_S2_ST7789.h │ │ │ ├── Setup72_ESP32_ST7789_172x320.h │ │ │ ├── Setup7_ST7735_128x128.h │ │ │ ├── Setup8_ILI9163_128x128.h │ │ │ ├── Setup9_ST7735_Overlap.h │ │ │ ├── SetupX_Template.h │ │ │ └── User_Custom_Fonts.h │ │ ├── keywords.txt │ │ ├── library.json │ │ ├── library.properties │ │ └── license.txt │ └── TensorFlowLite_ESP32 │ │ ├── .piopm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── library.properties │ │ ├── scripts │ │ └── sync_from_tflite_micro.sh │ │ └── src │ │ ├── TensorFlowLite_ESP32.h │ │ ├── bus │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── component.mk │ │ ├── i2c_bus.c │ │ ├── i2s_lcd_esp32_driver.c │ │ ├── i2s_lcd_esp32s2_driver.c │ │ ├── include │ │ │ ├── i2c_bus.h │ │ │ ├── i2s_lcd_driver.h │ │ │ └── spi_bus.h │ │ └── spi_bus.c │ │ ├── screen │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── component.mk │ │ ├── controller_driver │ │ │ ├── ili9341 │ │ │ │ ├── ili9341.c │ │ │ │ └── ili9341.h │ │ │ ├── ili9486 │ │ │ │ ├── ili9486.c │ │ │ │ └── ili9486.h │ │ │ ├── ili9488 │ │ │ │ ├── ili9488.c │ │ │ │ └── ili9488.h │ │ │ ├── ili9806 │ │ │ │ ├── ili9806.c │ │ │ │ └── ili9806.h │ │ │ ├── nt35510 │ │ │ │ ├── nt35510.c │ │ │ │ └── nt35510.h │ │ │ ├── rm68120 │ │ │ │ ├── rm68120.c │ │ │ │ └── rm68120.h │ │ │ ├── ssd1306 │ │ │ │ ├── ssd1306.c │ │ │ │ └── ssd1306.h │ │ │ ├── ssd1307 │ │ │ │ ├── ssd1307.c │ │ │ │ └── ssd1307.h │ │ │ ├── ssd1322 │ │ │ │ ├── ssd1322.c │ │ │ │ └── ssd1322.h │ │ │ ├── ssd1351 │ │ │ │ ├── ssd1351.c │ │ │ │ └── ssd1351.h │ │ │ ├── ssd1963 │ │ │ │ ├── ssd1963.c │ │ │ │ └── ssd1963.h │ │ │ ├── st7789 │ │ │ │ ├── st7789.c │ │ │ │ └── st7789.h │ │ │ └── st7796 │ │ │ │ ├── st7796.c │ │ │ │ └── st7796.h │ │ ├── interface_driver │ │ │ ├── scr_interface_driver.c │ │ │ └── scr_interface_driver.h │ │ ├── screen_driver.c │ │ ├── screen_driver.h │ │ └── screen_utility │ │ │ ├── interface_drv_def.h │ │ │ ├── screen_utility.c │ │ │ └── screen_utility.h │ │ ├── tensorflow │ │ └── lite │ │ │ ├── builtin_op_data.h │ │ │ ├── builtin_ops.h │ │ │ ├── c │ │ │ ├── builtin_op_data.h │ │ │ ├── c_api_types.h │ │ │ ├── common.cpp │ │ │ └── common.h │ │ │ ├── context_util.h │ │ │ ├── core │ │ │ └── api │ │ │ │ ├── error_reporter.cpp │ │ │ │ ├── error_reporter.h │ │ │ │ ├── flatbuffer_conversions.cpp │ │ │ │ ├── flatbuffer_conversions.h │ │ │ │ ├── op_resolver.cpp │ │ │ │ ├── op_resolver.h │ │ │ │ ├── tensor_utils.cpp │ │ │ │ └── tensor_utils.h │ │ │ ├── experimental │ │ │ └── microfrontend │ │ │ │ └── lib │ │ │ │ ├── bits.h │ │ │ │ ├── fft.cpp │ │ │ │ ├── fft.h │ │ │ │ ├── fft_util.cpp │ │ │ │ ├── fft_util.h │ │ │ │ ├── filterbank.c │ │ │ │ ├── filterbank.h │ │ │ │ ├── filterbank_util.c │ │ │ │ ├── filterbank_util.h │ │ │ │ ├── frontend.c │ │ │ │ ├── frontend.h │ │ │ │ ├── frontend_util.c │ │ │ │ ├── frontend_util.h │ │ │ │ ├── kiss_fft_common.h │ │ │ │ ├── kiss_fft_int16.cpp │ │ │ │ ├── kiss_fft_int16.h │ │ │ │ ├── log_lut.c │ │ │ │ ├── log_lut.h │ │ │ │ ├── log_scale.c │ │ │ │ ├── log_scale.h │ │ │ │ ├── log_scale_util.c │ │ │ │ ├── log_scale_util.h │ │ │ │ ├── noise_reduction.c │ │ │ │ ├── noise_reduction.h │ │ │ │ ├── noise_reduction_util.c │ │ │ │ ├── noise_reduction_util.h │ │ │ │ ├── pcan_gain_control.c │ │ │ │ ├── pcan_gain_control.h │ │ │ │ ├── pcan_gain_control_util.c │ │ │ │ ├── pcan_gain_control_util.h │ │ │ │ ├── window.c │ │ │ │ ├── window.h │ │ │ │ ├── window_util.c │ │ │ │ └── window_util.h │ │ │ ├── kernels │ │ │ ├── internal │ │ │ │ ├── common.h │ │ │ │ ├── compatibility.h │ │ │ │ ├── cppmath.h │ │ │ │ ├── max.h │ │ │ │ ├── min.h │ │ │ │ ├── optimized │ │ │ │ │ └── neon_check.h │ │ │ │ ├── portable_tensor.h │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ ├── quantization_util.cpp │ │ │ │ ├── quantization_util.h │ │ │ │ ├── reference │ │ │ │ │ ├── add.h │ │ │ │ │ ├── add_n.h │ │ │ │ │ ├── arg_min_max.h │ │ │ │ │ ├── batch_matmul.h │ │ │ │ │ ├── batch_to_space_nd.h │ │ │ │ │ ├── binary_function.h │ │ │ │ │ ├── broadcast_args.h │ │ │ │ │ ├── broadcast_to.h │ │ │ │ │ ├── ceil.h │ │ │ │ │ ├── comparisons.h │ │ │ │ │ ├── concatenation.h │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── cumsum.h │ │ │ │ │ ├── depth_to_space.h │ │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ │ ├── dequantize.h │ │ │ │ │ ├── elu.h │ │ │ │ │ ├── exp.h │ │ │ │ │ ├── fill.h │ │ │ │ │ ├── floor.h │ │ │ │ │ ├── floor_div.h │ │ │ │ │ ├── floor_mod.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── hard_swish.h │ │ │ │ │ ├── integer_ops │ │ │ │ │ │ ├── add.h │ │ │ │ │ │ ├── conv.h │ │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ │ ├── l2normalization.h │ │ │ │ │ │ ├── logistic.h │ │ │ │ │ │ ├── mean.h │ │ │ │ │ │ ├── mul.h │ │ │ │ │ │ ├── pooling.h │ │ │ │ │ │ ├── tanh.h │ │ │ │ │ │ └── transpose_conv.h │ │ │ │ │ ├── l2normalization.h │ │ │ │ │ ├── leaky_relu.h │ │ │ │ │ ├── log_softmax.h │ │ │ │ │ ├── logistic.h │ │ │ │ │ ├── lstm_cell.h │ │ │ │ │ ├── maximum_minimum.h │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── neg.h │ │ │ │ │ ├── pad.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── portable_tensor_utils.cpp │ │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ │ ├── portable_tensor_utils_impl.h │ │ │ │ │ ├── prelu.h │ │ │ │ │ ├── process_broadcast_shapes.h │ │ │ │ │ ├── quantize.h │ │ │ │ │ ├── reduce.h │ │ │ │ │ ├── requantize.h │ │ │ │ │ ├── resize_bilinear.h │ │ │ │ │ ├── resize_nearest_neighbor.h │ │ │ │ │ ├── round.h │ │ │ │ │ ├── slice.h │ │ │ │ │ ├── softmax.h │ │ │ │ │ ├── space_to_batch_nd.h │ │ │ │ │ ├── space_to_depth.h │ │ │ │ │ ├── strided_slice.h │ │ │ │ │ ├── sub.h │ │ │ │ │ ├── tanh.h │ │ │ │ │ ├── transpose.h │ │ │ │ │ └── transpose_conv.h │ │ │ │ ├── runtime_shape.h │ │ │ │ ├── strided_slice_logic.h │ │ │ │ ├── tensor_ctypes.h │ │ │ │ └── types.h │ │ │ ├── kernel_util.cpp │ │ │ ├── kernel_util.h │ │ │ ├── op_macros.h │ │ │ └── padding.h │ │ │ ├── micro │ │ │ ├── all_ops_resolver.cpp │ │ │ ├── all_ops_resolver.h │ │ │ ├── arena_allocator │ │ │ │ ├── ibuffer_allocator.h │ │ │ │ ├── non_persistent_arena_buffer_allocator.cpp │ │ │ │ ├── non_persistent_arena_buffer_allocator.h │ │ │ │ ├── recording_simple_memory_allocator.cpp │ │ │ │ ├── recording_simple_memory_allocator.h │ │ │ │ ├── simple_memory_allocator.cpp │ │ │ │ └── simple_memory_allocator.h │ │ │ ├── compatibility.h │ │ │ ├── debug_log.cpp │ │ │ ├── debug_log.h │ │ │ ├── fake_micro_context.cpp │ │ │ ├── fake_micro_context.h │ │ │ ├── flatbuffer_utils.cpp │ │ │ ├── flatbuffer_utils.h │ │ │ ├── kernels │ │ │ │ ├── activation_utils.h │ │ │ │ ├── activations.cpp │ │ │ │ ├── activations.h │ │ │ │ ├── activations_common.cpp │ │ │ │ ├── add.cpp │ │ │ │ ├── add.h │ │ │ │ ├── add_common.cpp │ │ │ │ ├── add_n.cpp │ │ │ │ ├── arg_min_max.cpp │ │ │ │ ├── assign_variable.cpp │ │ │ │ ├── batch_to_space_nd.cpp │ │ │ │ ├── broadcast_args.cpp │ │ │ │ ├── broadcast_to.cpp │ │ │ │ ├── call_once.cpp │ │ │ │ ├── cast.cpp │ │ │ │ ├── ceil.cpp │ │ │ │ ├── circular_buffer.cpp │ │ │ │ ├── circular_buffer.h │ │ │ │ ├── circular_buffer_common.cpp │ │ │ │ ├── circular_buffer_flexbuffers_generated_data.h │ │ │ │ ├── comparisons.cpp │ │ │ │ ├── concatenation.cpp │ │ │ │ ├── conv.cpp │ │ │ │ ├── conv.h │ │ │ │ ├── conv_common.cpp │ │ │ │ ├── conv_test.h │ │ │ │ ├── cumsum.cpp │ │ │ │ ├── depth_to_space.cpp │ │ │ │ ├── depthwise_conv.cpp │ │ │ │ ├── depthwise_conv.h │ │ │ │ ├── depthwise_conv_common.cpp │ │ │ │ ├── dequantize.cpp │ │ │ │ ├── dequantize.h │ │ │ │ ├── dequantize_common.cpp │ │ │ │ ├── detection_postprocess.cpp │ │ │ │ ├── detection_postprocess_flexbuffers_generated_data.h │ │ │ │ ├── elementwise.cpp │ │ │ │ ├── elu.cpp │ │ │ │ ├── esp_nn │ │ │ │ │ └── README.md │ │ │ │ ├── ethosu.cpp │ │ │ │ ├── ethosu.h │ │ │ │ ├── exp.cpp │ │ │ │ ├── expand_dims.cpp │ │ │ │ ├── fill.cpp │ │ │ │ ├── floor.cpp │ │ │ │ ├── floor_div.cpp │ │ │ │ ├── floor_mod.cpp │ │ │ │ ├── fully_connected.cpp │ │ │ │ ├── fully_connected.h │ │ │ │ ├── fully_connected_common.cpp │ │ │ │ ├── gather.cpp │ │ │ │ ├── gather_nd.cpp │ │ │ │ ├── hard_swish.cpp │ │ │ │ ├── hard_swish.h │ │ │ │ ├── hard_swish_common.cpp │ │ │ │ ├── if.cpp │ │ │ │ ├── kernel_runner.cpp │ │ │ │ ├── kernel_runner.h │ │ │ │ ├── kernel_util.cpp │ │ │ │ ├── kernel_util.h │ │ │ │ ├── l2_pool_2d.cpp │ │ │ │ ├── l2norm.cpp │ │ │ │ ├── leaky_relu.cpp │ │ │ │ ├── leaky_relu.h │ │ │ │ ├── leaky_relu_common.cpp │ │ │ │ ├── log_softmax.cpp │ │ │ │ ├── logical.cpp │ │ │ │ ├── logical.h │ │ │ │ ├── logical_common.cpp │ │ │ │ ├── logistic.cpp │ │ │ │ ├── logistic.h │ │ │ │ ├── logistic_common.cpp │ │ │ │ ├── lstm_eval.cpp │ │ │ │ ├── lstm_eval.h │ │ │ │ ├── lstm_shared.h │ │ │ │ ├── maximum_minimum.cpp │ │ │ │ ├── micro_ops.h │ │ │ │ ├── micro_tensor_utils.cpp │ │ │ │ ├── micro_tensor_utils.h │ │ │ │ ├── micro_utils.h │ │ │ │ ├── mirror_pad.cpp │ │ │ │ ├── mul.cpp │ │ │ │ ├── mul.h │ │ │ │ ├── mul_common.cpp │ │ │ │ ├── neg.cpp │ │ │ │ ├── pack.cpp │ │ │ │ ├── pad.cpp │ │ │ │ ├── pooling.cpp │ │ │ │ ├── pooling.h │ │ │ │ ├── pooling_common.cpp │ │ │ │ ├── prelu.cpp │ │ │ │ ├── prelu.h │ │ │ │ ├── prelu_common.cpp │ │ │ │ ├── quantize.cpp │ │ │ │ ├── quantize.h │ │ │ │ ├── quantize_common.cpp │ │ │ │ ├── read_variable.cpp │ │ │ │ ├── reduce.cpp │ │ │ │ ├── reshape.cpp │ │ │ │ ├── resize_bilinear.cpp │ │ │ │ ├── resize_nearest_neighbor.cpp │ │ │ │ ├── round.cpp │ │ │ │ ├── shape.cpp │ │ │ │ ├── slice.cpp │ │ │ │ ├── softmax.cpp │ │ │ │ ├── softmax.h │ │ │ │ ├── softmax_common.cpp │ │ │ │ ├── space_to_batch_nd.cpp │ │ │ │ ├── space_to_depth.cpp │ │ │ │ ├── split.cpp │ │ │ │ ├── split_v.cpp │ │ │ │ ├── squared_difference.cpp │ │ │ │ ├── squeeze.cpp │ │ │ │ ├── strided_slice.cpp │ │ │ │ ├── sub.cpp │ │ │ │ ├── sub.h │ │ │ │ ├── sub_common.cpp │ │ │ │ ├── svdf.cpp │ │ │ │ ├── svdf.h │ │ │ │ ├── svdf_common.cpp │ │ │ │ ├── tanh.cpp │ │ │ │ ├── transpose.cpp │ │ │ │ ├── transpose_conv.cpp │ │ │ │ ├── unidirectional_sequence_lstm.cpp │ │ │ │ ├── unidirectional_sequence_lstm_test_config.h │ │ │ │ ├── unpack.cpp │ │ │ │ ├── var_handle.cpp │ │ │ │ ├── while.cpp │ │ │ │ └── zeros_like.cpp │ │ │ ├── memory_helpers.cpp │ │ │ ├── memory_helpers.h │ │ │ ├── memory_planner │ │ │ │ ├── greedy_memory_planner.cpp │ │ │ │ ├── greedy_memory_planner.h │ │ │ │ ├── linear_memory_planner.cpp │ │ │ │ ├── linear_memory_planner.h │ │ │ │ ├── memory_plan_struct.h │ │ │ │ ├── micro_memory_planner.h │ │ │ │ ├── non_persistent_buffer_planner_shim.cpp │ │ │ │ └── non_persistent_buffer_planner_shim.h │ │ │ ├── micro_allocation_info.cpp │ │ │ ├── micro_allocation_info.h │ │ │ ├── micro_allocator.cpp │ │ │ ├── micro_allocator.h │ │ │ ├── micro_arena_constants.h │ │ │ ├── micro_context.cpp │ │ │ ├── micro_context.h │ │ │ ├── micro_error_reporter.cpp │ │ │ ├── micro_error_reporter.h │ │ │ ├── micro_graph.cpp │ │ │ ├── micro_graph.h │ │ │ ├── micro_interpreter.cpp │ │ │ ├── micro_interpreter.h │ │ │ ├── micro_mutable_op_resolver.h │ │ │ ├── micro_op_resolver.h │ │ │ ├── micro_profiler.cpp │ │ │ ├── micro_profiler.h │ │ │ ├── micro_resource_variable.cpp │ │ │ ├── micro_resource_variable.h │ │ │ ├── micro_string.cpp │ │ │ ├── micro_string.h │ │ │ ├── micro_time.cpp │ │ │ ├── micro_time.h │ │ │ ├── micro_utils.cpp │ │ │ ├── micro_utils.h │ │ │ ├── mock_micro_graph.cpp │ │ │ ├── mock_micro_graph.h │ │ │ ├── recording_micro_allocator.cpp │ │ │ ├── recording_micro_allocator.h │ │ │ ├── recording_micro_interpreter.h │ │ │ ├── system_setup.cpp │ │ │ ├── system_setup.h │ │ │ ├── test_helper_custom_ops.cpp │ │ │ ├── test_helper_custom_ops.h │ │ │ ├── test_helpers.cpp │ │ │ └── test_helpers.h │ │ │ ├── portable_type_to_tflitetype.h │ │ │ └── schema │ │ │ ├── schema_generated.h │ │ │ ├── schema_utils.cpp │ │ │ └── schema_utils.h │ │ ├── third_party │ │ ├── flatbuffers │ │ │ ├── LICENSE.txt │ │ │ ├── allocator.h │ │ │ ├── array.h │ │ │ ├── base.h │ │ │ ├── buffer.h │ │ │ ├── buffer_ref.h │ │ │ ├── default_allocator.h │ │ │ ├── detached_buffer.h │ │ │ ├── flatbuffer_builder.h │ │ │ ├── flatbuffers.h │ │ │ ├── flexbuffers.h │ │ │ ├── stl_emulation.h │ │ │ ├── string.h │ │ │ ├── struct.h │ │ │ ├── table.h │ │ │ ├── util.h │ │ │ ├── vector.h │ │ │ ├── vector_downward.h │ │ │ └── verifier.h │ │ ├── gemmlowp │ │ │ ├── LICENSE │ │ │ ├── fixedpoint │ │ │ │ ├── fixedpoint.h │ │ │ │ ├── fixedpoint_neon.h │ │ │ │ └── fixedpoint_sse.h │ │ │ └── internal │ │ │ │ └── detect_platform.h │ │ ├── kissfft │ │ │ ├── COPYING │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ └── tools │ │ │ │ ├── kiss_fftr.c │ │ │ │ └── kiss_fftr.h │ │ └── ruy │ │ │ └── ruy │ │ │ └── profiler │ │ │ └── instrumentation.h │ │ └── utility.h │ ├── platformio.ini │ ├── src │ ├── constants.cpp │ ├── interpolation.cpp │ ├── main.cpp │ ├── model.cpp │ └── output_handler.cpp │ └── test │ └── README ├── 3.HardwareInfo ├── AMG8833 datasheet.pdf ├── AMG8833 reference.pdf ├── adafruit-amg8833-8x8-thermal-camera-sensor.pdf └── esp32gram.png ├── 4.Img ├── network.png └── preface.jpg ├── LICENSE └── README.md /1.NetworkModel/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /1.NetworkModel/.ipynb_checkpoints/gesture_train-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/.ipynb_checkpoints/gesture_train-checkpoint.ipynb -------------------------------------------------------------------------------- /1.NetworkModel/.ipynb_checkpoints/tune_bar-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/.ipynb_checkpoints/tune_bar-checkpoint.ipynb -------------------------------------------------------------------------------- /1.NetworkModel/dataset/1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/dataset/1.log -------------------------------------------------------------------------------- /1.NetworkModel/dataset/2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/dataset/2.log -------------------------------------------------------------------------------- /1.NetworkModel/dataset/3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/dataset/3.log -------------------------------------------------------------------------------- /1.NetworkModel/dataset/close_far.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/dataset/close_far.log -------------------------------------------------------------------------------- /1.NetworkModel/dataset/close_near.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/dataset/close_near.log -------------------------------------------------------------------------------- /1.NetworkModel/dataset/cross.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/dataset/cross.log -------------------------------------------------------------------------------- /1.NetworkModel/dataset/none.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/dataset/none.log -------------------------------------------------------------------------------- /1.NetworkModel/dataset/open.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/dataset/open.log -------------------------------------------------------------------------------- /1.NetworkModel/gesture_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/gesture_train.ipynb -------------------------------------------------------------------------------- /1.NetworkModel/model.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/model.tflite -------------------------------------------------------------------------------- /1.NetworkModel/model_quantized.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/model_quantized.tflite -------------------------------------------------------------------------------- /1.NetworkModel/thermo_gesture.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/1.NetworkModel/thermo_gesture.h5 -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/.vscode/extensions.json -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/include/README -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/include/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/include/interpolation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit AMG88xx Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit AMG88xx Library/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit AMG88xx Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit AMG88xx Library/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit AMG88xx Library/examples/thermal_cam_featherwing/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit AMG88xx Library/examples/thermal_cam_interpolate/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit AMG88xx Library/examples/thermal_cam_interpolate/.trinket_m0.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_BusIO_Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_BusIO_Register.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_I2CDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_I2CDevice.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_I2CDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_I2CDevice.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_I2CRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_I2CRegister.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_SPIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_SPIDevice.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_SPIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/Adafruit_SPIDevice.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/LICENSE -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS = . 2 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit BusIO/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_GFX.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_GrayOLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_GrayOLED.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_SPITFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_SPITFT.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_SPITFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Adafruit_SPITFT.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Fonts/Org_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Fonts/Org_01.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Fonts/Picopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Fonts/Picopixel.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/Fonts/TomThumb.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS = . 2 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/gfxfont.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/glcdfont.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit GFX Library/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/Adafruit_ILI9341.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/Adafruit_ILI9341.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/Adafruit_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/Adafruit_ILI9341.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/examples/breakouttouchpaint/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/examples/onoffbutton_breakout/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/examples/pictureEmbed/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/examples/pyportal_boing/.pyportal.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/examples/touchpaint_pyportal/.pyportal.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit ILI9341/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest/.cpb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_feather_esp32s2_tft/.feather_esp32s2_tft.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_hallowing_m0/.hallowing_m0.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_hallowing_m4/.hallowing_m4.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_pybadge_pygamer/.pybadge.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_pybadge_pygamer/.pygamer.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_st7789/.cpb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.cplayClassic.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.due.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.esp32.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.uno.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit ST7735 and ST7789 Library/examples/seesaw_shield18_test/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/Adafruit_STMPE610.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/Adafruit_STMPE610.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/Adafruit_STMPE610.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/Adafruit_STMPE610.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/LICENSE -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/assets/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/assets/board.jpg -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/code-of-conduct.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit STMPE610/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/TouchScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/TouchScreen.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/TouchScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/TouchScreen.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/code-of-conduct.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/examples/touchscreendemo/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/examples/touchscreendemoshield/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit TouchScreen/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/Doxyfile -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/examples/joy_featherwing/joy_featherwing_ESP32/.esp32.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/seesaw_motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/seesaw_motor.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/seesaw_servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/seesaw_servo.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/seesaw_servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/Adafruit seesaw Library/seesaw_servo.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/README -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Button.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Button.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Smooth_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Smooth_font.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Smooth_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Smooth_font.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Sprite.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Sprite.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Touch.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Extensions/Touch.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font32rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font32rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font32rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font64rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font64rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font64rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font72rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font72rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font72rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font72x53rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font72x53rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font72x53rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font7srle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font7srle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/Font7srle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/GFXFF/print.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Fonts/glcdfont.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Kconfig -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/pio_SPI.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/pio_SPI.pio.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/pio_SPI_18bit.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Processors/pio_SPI_18bit.pio.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357B_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357B_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357C_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357C_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357D_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/HX8357D_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9163_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9163_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9488_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9488_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/R61581_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/R61581_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/RM68120_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/RM68120_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/RM68140_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/RM68140_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/SSD1351_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/SSD1351_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/SSD1963_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/SSD1963_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7735_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7735_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7789_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7789_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7796_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_Drivers/ST7796_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_config.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Tools/bmp2array4bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Tools/bmp2array4bit/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setup.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setup_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setup_Select.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup135_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup135_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup15_HX8357D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup15_HX8357D.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup200_GC9A01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup200_GC9A01.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup203_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup203_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup20_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup20_ILI9488.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup21_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup21_ILI9488.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup22_TTGO_T4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup22_TTGO_T4.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup23_TTGO_TM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup23_TTGO_TM.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/SetupX_Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/User_Setups/SetupX_Template.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/library.json -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/lib/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/platformio.ini -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/src/interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/src/interpolation.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/src/main.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/1.GetDataset/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/1.GetDataset/test/README -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/.vscode/extensions.json -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/include/README -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/include/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/include/constants.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/include/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/include/interpolation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/include/main_functions.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/include/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/include/model.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/include/output_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/include/output_handler.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit AMG88xx Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit AMG88xx Library/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit AMG88xx Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit AMG88xx Library/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit AMG88xx Library/examples/thermal_cam_featherwing/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit AMG88xx Library/examples/thermal_cam_interpolate/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit AMG88xx Library/examples/thermal_cam_interpolate/.trinket_m0.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_I2CDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_I2CDevice.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_I2CDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_I2CDevice.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_I2CRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_I2CRegister.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_SPIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_SPIDevice.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_SPIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/Adafruit_SPIDevice.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/LICENSE -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS = . 2 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit BusIO/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Adafruit_GFX.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Adafruit_SPITFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Adafruit_SPITFT.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Fonts/Org_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Fonts/Org_01.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Fonts/Picopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Fonts/Picopixel.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/Fonts/TomThumb.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS = . 2 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/gfxfont.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/glcdfont.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit GFX Library/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/Adafruit_ILI9341.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/Adafruit_ILI9341.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/Adafruit_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/Adafruit_ILI9341.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/examples/breakouttouchpaint/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/examples/onoffbutton_breakout/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/examples/pictureEmbed/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/examples/pyportal_boing/.pyportal.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/examples/touchpaint_pyportal/.pyportal.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit ILI9341/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest/.cpb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_feather_esp32s2_tft/.feather_esp32s2_tft.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_hallowing_m0/.hallowing_m0.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_hallowing_m4/.hallowing_m4.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_pybadge_pygamer/.pybadge.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_pybadge_pygamer/.pygamer.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_st7789/.cpb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.cplayClassic.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.due.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.esp32.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.uno.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit ST7735 and ST7789 Library/examples/seesaw_shield18_test/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/Adafruit_STMPE610.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/Adafruit_STMPE610.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/LICENSE -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/assets/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/assets/board.jpg -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/code-of-conduct.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit STMPE610/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/TouchScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/TouchScreen.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/TouchScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/TouchScreen.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/examples/touchscreendemo/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/examples/touchscreendemoshield/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit TouchScreen/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/Doxyfile -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/examples/joy_featherwing/joy_featherwing_ESP32/.esp32.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/seesaw_motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/seesaw_motor.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/seesaw_servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/Adafruit seesaw Library/seesaw_servo.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/README -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Button.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Button.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Smooth_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Smooth_font.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Smooth_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Smooth_font.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Sprite.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Sprite.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Touch.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Extensions/Touch.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font32rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font32rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font32rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font64rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font64rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font64rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font72rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font72rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font72rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font72x53rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font72x53rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font72x53rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font7srle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font7srle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/Font7srle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/GFXFF/print.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Fonts/glcdfont.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Kconfig -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/pio_SPI.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Processors/pio_SPI.pio.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9488_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9488_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/R61581_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/R61581_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/RM68120_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/RM68120_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/RM68140_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/RM68140_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/SSD1351_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/SSD1351_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/SSD1963_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/SSD1963_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7735_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7735_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7789_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7789_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7796_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_Drivers/ST7796_Rotation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_config.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Tools/bmp2array4bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Tools/bmp2array4bit/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setup.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setup_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setup_Select.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup135_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup135_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup15_HX8357D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup15_HX8357D.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup200_GC9A01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup200_GC9A01.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup203_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup203_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup20_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup20_ILI9488.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup21_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup21_ILI9488.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup22_TTGO_T4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup22_TTGO_T4.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup23_TTGO_TM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup23_TTGO_TM.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/SetupX_Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/User_Setups/SetupX_Template.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/library.json -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/LICENSE -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/src/bus/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/src/bus/Kconfig -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/src/bus/i2c_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/src/bus/i2c_bus.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/src/bus/spi_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/src/bus/spi_bus.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/lib/TensorFlowLite_ESP32/src/utility.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/platformio.ini -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/src/Number.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/src/Number.code-workspace -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/src/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/src/constants.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/src/interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/src/interpolation.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/src/main.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/src/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/src/model.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/src/output_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/src/output_handler.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/2.NumberPred/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/2.NumberPred/test/README -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/.vscode/extensions.json -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/.vscode/settings.json -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/include/README -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/include/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/include/bar.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/include/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/include/constants.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/include/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/include/interpolation.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/include/main_functions.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/include/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/include/model.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/include/output_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/include/output_handler.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit AMG88xx Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit AMG88xx Library/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit AMG88xx Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit AMG88xx Library/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit AMG88xx Library/examples/thermal_cam_featherwing/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit AMG88xx Library/examples/thermal_cam_interpolate/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit AMG88xx Library/examples/thermal_cam_interpolate/.trinket_m0.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_I2CDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_I2CDevice.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_I2CDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_I2CDevice.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_I2CRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_I2CRegister.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_SPIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_SPIDevice.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_SPIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/Adafruit_SPIDevice.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/LICENSE -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS = . 2 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit BusIO/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/Adafruit_GFX.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/Fonts/Org_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/Fonts/Org_01.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/Fonts/TomThumb.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS = . 2 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/gfxfont.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/glcdfont.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit GFX Library/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/Adafruit_ILI9341.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/Adafruit_ILI9341.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/Adafruit_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/Adafruit_ILI9341.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/examples/breakouttouchpaint/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/examples/onoffbutton_breakout/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/examples/pictureEmbed/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/examples/pyportal_boing/.pyportal.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/examples/touchpaint_pyportal/.pyportal.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ILI9341/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest/.cpb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_feather_esp32s2_tft/.feather_esp32s2_tft.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_hallowing_m0/.hallowing_m0.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_hallowing_m4/.hallowing_m4.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_pybadge_pygamer/.pybadge.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_pybadge_pygamer/.pygamer.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_st7789/.cpb.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.cplayClassic.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.due.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.esp32.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.mega2560.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/graphicstest_tft_gizmo/.uno.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit ST7735 and ST7789 Library/examples/seesaw_shield18_test/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/Adafruit_STMPE610.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/Adafruit_STMPE610.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/LICENSE -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/assets/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/assets/board.jpg -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/code-of-conduct.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit STMPE610/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/TouchScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/TouchScreen.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/TouchScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/TouchScreen.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/examples/touchscreendemo/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/examples/touchscreendemoshield/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit TouchScreen/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit seesaw Library/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit seesaw Library/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit seesaw Library/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit seesaw Library/Doxyfile -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit seesaw Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/Adafruit seesaw Library/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/Adafruit seesaw Library/examples/joy_featherwing/joy_featherwing_ESP32/.esp32.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/README -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Button.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Button.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Smooth_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Smooth_font.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Smooth_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Smooth_font.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Sprite.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Sprite.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Touch.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Extensions/Touch.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font32rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font32rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font32rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font64rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font64rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font64rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font72rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font72rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font72rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font72x53rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font72x53rle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font72x53rle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font7srle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font7srle.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/Font7srle.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/GFXFF/print.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Fonts/glcdfont.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Kconfig -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/pio_SPI.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Processors/pio_SPI.pio.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_config.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setup.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setup_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setup_Select.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/library.json -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/library.properties -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/.piopm -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/LICENSE -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/README.md -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/src/bus/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/src/bus/Kconfig -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/lib/TensorFlowLite_ESP32/src/utility.h -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/platformio.ini -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/src/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/src/constants.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/src/interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/src/interpolation.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/src/main.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/src/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/src/model.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/src/output_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/src/output_handler.cpp -------------------------------------------------------------------------------- /2.Firmware_ESP32/3.ProgressBar/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/2.Firmware_ESP32/3.ProgressBar/test/README -------------------------------------------------------------------------------- /3.HardwareInfo/AMG8833 datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/3.HardwareInfo/AMG8833 datasheet.pdf -------------------------------------------------------------------------------- /3.HardwareInfo/AMG8833 reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/3.HardwareInfo/AMG8833 reference.pdf -------------------------------------------------------------------------------- /3.HardwareInfo/adafruit-amg8833-8x8-thermal-camera-sensor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/3.HardwareInfo/adafruit-amg8833-8x8-thermal-camera-sensor.pdf -------------------------------------------------------------------------------- /3.HardwareInfo/esp32gram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/3.HardwareInfo/esp32gram.png -------------------------------------------------------------------------------- /4.Img/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/4.Img/network.png -------------------------------------------------------------------------------- /4.Img/preface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/4.Img/preface.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangZai-Embedded/ThermalGesture_ESP32/HEAD/README.md --------------------------------------------------------------------------------