├── .gitignore ├── 3D_file ├── 086_T-QT_COV-A09.stl ├── 087_T-QT_COV-B09.stl ├── 088_T-QT_COV-C08.stl ├── README.md ├── T_QT.DXF ├── T_QT_Pro.stp └── shell.png ├── LICENSE ├── README.md ├── board └── esp32-s3-t-qt-pro.json ├── doc ├── GC9107 DataSheet V1.2.pdf ├── esp32-s3_datasheet_cn.pdf ├── esp32-s3_datasheet_en.pdf ├── esp32-s3_technical_reference_manual_cn.pdf └── esp32-s3_technical_reference_manual_en.pdf ├── examples ├── Arduino_Life │ └── Arduino_Life.ino ├── DeepSleep │ ├── DeepSleep.ino │ └── image_logo.h ├── LVGL_Arduino │ └── LVGL_Arduino.ino ├── LVGL_Factory │ ├── LOGO128x128.c │ ├── LVGL_Factory.ino │ ├── clock_bg_img.c │ ├── clock_hour_img.c │ ├── clock_min_img.c │ ├── clock_sec_img.c │ ├── data │ │ └── t-qt-pro-2.jpg │ ├── duck_gif.c │ ├── image_logo.h │ ├── img_t_qt_cert.h │ ├── lvgl_gui.cpp │ ├── lvgl_gui.h │ └── test_img.c ├── Pong_v3 │ └── Pong_v3.ino ├── RLE_Font_test │ └── RLE_Font_test.ino ├── RotationTest │ └── RotationTest.ino ├── SensorBNO080 │ └── SensorBNO080.ino ├── TFT_Char_times │ └── TFT_Char_times.ino ├── TFT_Ellipse │ └── TFT_Ellipse.ino ├── TFT_Meter_5 │ └── TFT_Meter_5.ino ├── TFT_Rainbow │ └── TFT_Rainbow.ino └── TFT_graphicstest_PDQ3 │ └── TFT_graphicstest_PDQ3.ino ├── extras ├── GC9A01_Defines.h ├── GC9A01_Init.h ├── GC9A01_Rotation.h └── Setup211_LilyGo_T_QT_Pro_S3.h ├── firmware ├── T-QT-Pro-N4R2_LVGL_Factory_240815.bin ├── T-QT-Pro-N8_LVGL_Factory_240815.bin ├── esptool.exe ├── flash QT-Pro-N4R2.bat └── flash QT-Pro-N8.bat ├── image ├── N4R2.jpg ├── N8.jpg ├── logo.png ├── pinmap_en.jpg └── specifications_en.jpg ├── lib ├── OneButton │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── BlinkMachine │ │ │ └── BlinkMachine.ino │ │ ├── FunctionalButton │ │ │ └── FunctionalButton.ino │ │ ├── InterruptOneButton │ │ │ └── InterruptOneButton.ino │ │ ├── SimpleOneButton │ │ │ └── SimpleOneButton.ino │ │ ├── SpecialInput │ │ │ └── SpecialInput.ino │ │ └── TwoButtons │ │ │ └── TwoButtons.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ │ ├── OneButton.cpp │ │ └── OneButton.h ├── SparkFun_BNO080_Arduino_Library │ ├── .gitattributes │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ ├── LICENSE.md │ ├── README.md │ ├── examples │ │ ├── Example1-RotationVector │ │ │ └── Example1-RotationVector.ino │ │ ├── Example10-PrintPacket │ │ │ └── Example10-PrintPacket.ino │ │ ├── Example11-AdvancedConfig │ │ │ └── Example11-AdvancedConfig.ino │ │ ├── Example12-LinearAccelerometer │ │ │ └── Example12-LinearAccelerometer.ino │ │ ├── Example13-TimeStamp │ │ │ └── Example13-TimeStamp.ino │ │ ├── Example14-TwoSensors │ │ │ └── Example14-TwoSensors.ino │ │ ├── Example15-RawReadings │ │ │ └── Example15-RawReadings.ino │ │ ├── Example16-GyroIntegratedRotationVector │ │ │ └── Example16-GyroIntegratedRotationVector.ino │ │ ├── Example17-EulerAngles │ │ │ └── Example17-EulerAngles.ino │ │ ├── Example18-AccessMultiple │ │ │ └── Example18-AccessMultiple.ino │ │ ├── Example19-Interrupt │ │ │ └── Example19-Interrupt.ino │ │ ├── Example2-Accelerometer │ │ │ └── Example2-Accelerometer.ino │ │ ├── Example20-Sleep │ │ │ └── Example20-Sleep.ino │ │ ├── Example21-ResetCheck │ │ │ └── Example21-ResetCheck.ino │ │ ├── Example22-Tare │ │ │ └── Example22-Tare.ino │ │ ├── Example23-Gravity │ │ │ └── Example23-Gravity.ino │ │ ├── Example24-UncalibratedGyro │ │ │ └── Example24-UncalibratedGyro.ino │ │ ├── Example3-Gyro │ │ │ └── Example3-Gyro.ino │ │ ├── Example4-Magnetometer │ │ │ └── Example4-Magnetometer.ino │ │ ├── Example5-StepCounter │ │ │ └── Example5-StepCounter.ino │ │ ├── Example6-MetaData │ │ │ └── Example6-MetaData.ino │ │ ├── Example7-StabilityClassifier │ │ │ └── Example7-StabilityClassifier.ino │ │ ├── Example8-ActivityClassifier │ │ │ └── Example8-ActivityClassifier.ino │ │ ├── Example9-Calibrate │ │ │ └── Example9-Calibrate.ino │ │ └── SPI │ │ │ ├── Example1-RotationVector │ │ │ └── Example1-RotationVector.ino │ │ │ ├── Example12-LinearAccelerometer │ │ │ └── Example12-LinearAccelerometer.ino │ │ │ ├── Example17-EulerAngles │ │ │ └── Example17-EulerAngles.ino │ │ │ ├── Example18-AccessMultiple │ │ │ └── Example18-AccessMultiple.ino │ │ │ └── Example3-AccelAndRotationVector │ │ │ └── Example3-AccelAndRotationVector.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SparkFun_BNO080_Arduino_Library.cpp │ │ └── SparkFun_BNO080_Arduino_Library.h ├── TFT_eSPI │ ├── .gitattributes │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ └── issue-template.md │ ├── .gitignore │ ├── 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_8bit_parallel_18bpp.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.h │ │ │ │ └── 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 │ │ ├── Setup108_RP2040_ST7735.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 │ │ ├── Setup138_Pico_Explorer_Base_RP2040_ST7789.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 │ │ ├── Setup206_LilyGo_T_Display_S3.h │ │ ├── Setup207_LilyGo_T_HMI.h │ │ ├── Setup209_LilyGo_T_Dongle_S3.h │ │ ├── Setup20_ILI9488.h │ │ ├── Setup210_LilyGo_T_Embed_S3.h │ │ ├── Setup211_LilyGo_T_QT_Pro_S3.h │ │ ├── Setup212_LilyGo_T_PicoPro.h │ │ ├── Setup213_LilyGo_T_Beam_Shield.h │ │ ├── Setup21_ILI9488.h │ │ ├── Setup22_TTGO_T4.h │ │ ├── Setup22_TTGO_T4_v1.3.h │ │ ├── Setup23_TTGO_TM.h │ │ ├── Setup24_ST7789.h │ │ ├── Setup250_ESP32_S3_Box_Lite.h │ │ ├── Setup251_ESP32_S3_Box.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 │ │ ├── Setup66_Seeed_XIAO_Round.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 │ │ ├── Setup70f_ESP32_S2_ST7735.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 │ ├── docs │ │ ├── ESP-IDF │ │ │ └── Using ESP-IDF.txt │ │ ├── ESP32 UNO board mod │ │ │ ├── ESP32 UNO board mod.jpg │ │ │ └── ESP32 UNO board pinout.jpg │ │ ├── PlatformIO │ │ │ ├── Configuring options.txt │ │ │ └── rp2040.txt │ │ └── RPi_TFT_connections │ │ │ ├── RPi_TFT_Connections.png │ │ │ └── RPi_TFT_mod.png │ ├── examples │ │ ├── 160 x 128 │ │ │ ├── Arduino_Life │ │ │ │ └── Arduino_Life.ino │ │ │ ├── Pong_v3 │ │ │ │ └── Pong_v3.ino │ │ │ ├── RLE_Font_test │ │ │ │ └── RLE_Font_test.ino │ │ │ ├── TFT_Char_times │ │ │ │ └── TFT_Char_times.ino │ │ │ ├── TFT_Clock │ │ │ │ └── TFT_Clock.ino │ │ │ ├── TFT_Clock_Digital │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ ├── TFT_Ellipse │ │ │ │ └── TFT_Ellipse.ino │ │ │ ├── TFT_Meter_5 │ │ │ │ └── TFT_Meter_5.ino │ │ │ ├── TFT_Print_Test │ │ │ │ └── TFT_Print_Test.ino │ │ │ ├── TFT_Rainbow │ │ │ │ └── TFT_Rainbow.ino │ │ │ ├── TFT_flash_jpg │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ ├── jpeg1.h │ │ │ │ ├── jpeg2.h │ │ │ │ ├── jpeg3.h │ │ │ │ └── jpeg4.h │ │ │ ├── TFT_graphicstest_PDQ3 │ │ │ │ └── TFT_graphicstest_PDQ3.ino │ │ │ ├── TFT_graphicstest_small │ │ │ │ └── TFT_graphicstest_small.ino │ │ │ └── UTFT_demo_fast │ │ │ │ └── UTFT_demo_fast.ino │ │ ├── 320 x 240 │ │ │ ├── All_Free_Fonts_Demo │ │ │ │ ├── All_Free_Fonts_Demo.ino │ │ │ │ └── Free_Fonts.h │ │ │ ├── Cellular_Automata │ │ │ │ └── Cellular_Automata.ino │ │ │ ├── Free_Font_Demo │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ └── Free_Fonts.h │ │ │ ├── Keypad_240x320 │ │ │ │ └── Keypad_240x320.ino │ │ │ ├── RLE_Font_test │ │ │ │ └── RLE_Font_test.ino │ │ │ ├── Read_ID_bitbash │ │ │ │ └── Read_ID_bitbash.ino │ │ │ ├── TFT_ArcFill │ │ │ │ └── TFT_ArcFill.ino │ │ │ ├── TFT_Char_times │ │ │ │ └── TFT_Char_times.ino │ │ │ ├── TFT_Clock │ │ │ │ └── TFT_Clock.ino │ │ │ ├── TFT_Clock_Digital │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ ├── TFT_Custom_Fonts │ │ │ │ └── TFT_Custom_Fonts.ino │ │ │ ├── TFT_Ellipse │ │ │ │ └── TFT_Ellipse.ino │ │ │ ├── TFT_FillArcSpiral │ │ │ │ └── TFT_FillArcSpiral.ino │ │ │ ├── TFT_Float_Test │ │ │ │ └── TFT_Float_Test.ino │ │ │ ├── TFT_Mandlebrot │ │ │ │ └── TFT_Mandlebrot.ino │ │ │ ├── TFT_Matrix │ │ │ │ └── TFT_Matrix.ino │ │ │ ├── TFT_Meter_linear │ │ │ │ └── TFT_Meter_linear.ino │ │ │ ├── TFT_Meters │ │ │ │ └── TFT_Meters.ino │ │ │ ├── TFT_Pie_Chart │ │ │ │ └── TFT_Pie_Chart.ino │ │ │ ├── TFT_Pong │ │ │ │ └── TFT_Pong.ino │ │ │ ├── TFT_Print_Test │ │ │ │ └── TFT_Print_Test.ino │ │ │ ├── TFT_Rainbow_one_lib │ │ │ │ └── TFT_Rainbow_one_lib.ino │ │ │ ├── TFT_Read_Reg │ │ │ │ └── TFT_Read_Reg.ino │ │ │ ├── TFT_Spiro │ │ │ │ └── TFT_Spiro.ino │ │ │ ├── TFT_Starfield │ │ │ │ └── TFT_Starfield.ino │ │ │ ├── TFT_String_Align │ │ │ │ └── TFT_String_Align.ino │ │ │ ├── TFT_Terminal │ │ │ │ └── TFT_Terminal.ino │ │ │ ├── TFT_graphicstest_PDQ │ │ │ │ └── TFT_graphicstest_PDQ.ino │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ └── UTFT_demo │ │ │ │ └── UTFT_demo.ino │ │ ├── 480 x 320 │ │ │ ├── Cellular_Automata │ │ │ │ └── Cellular_Automata.ino │ │ │ ├── Demo_3D_cube │ │ │ │ └── Demo_3D_cube.ino │ │ │ ├── Free_Font_Demo │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ └── Free_Fonts.h │ │ │ ├── Graph_2 │ │ │ │ └── Graph_2.ino │ │ │ ├── Keypad_480x320 │ │ │ │ └── Keypad_480x320.ino │ │ │ ├── TFT_Char_times │ │ │ │ └── TFT_Char_times.ino │ │ │ ├── TFT_Ellipse │ │ │ │ └── TFT_Ellipse.ino │ │ │ ├── TFT_Meter_4 │ │ │ │ └── TFT_Meter_4.ino │ │ │ ├── TFT_Meters │ │ │ │ └── TFT_Meters.ino │ │ │ ├── TFT_Padding_demo │ │ │ │ └── TFT_Padding_demo.ino │ │ │ ├── TFT_Print_Test │ │ │ │ └── TFT_Print_Test.ino │ │ │ ├── TFT_Rainbow480 │ │ │ │ └── TFT_Rainbow480.ino │ │ │ ├── TFT_String_Align │ │ │ │ └── TFT_String_Align.ino │ │ │ ├── TFT_flash_jpg │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ ├── jpeg1.h │ │ │ │ ├── jpeg2.h │ │ │ │ ├── jpeg3.h │ │ │ │ └── jpeg4.h │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ ├── TFT_ring_meter │ │ │ │ ├── Alert.h │ │ │ │ └── TFT_ring_meter.ino │ │ │ ├── Touch_Controller_Demo │ │ │ │ └── Touch_Controller_Demo.ino │ │ │ └── UTFT_Demo_480x320 │ │ │ │ └── UTFT_Demo_480x320.ino │ │ ├── DMA test │ │ │ ├── Bouncy_Circles │ │ │ │ └── Bouncy_Circles.ino │ │ │ ├── Flash_Jpg_DMA │ │ │ │ ├── Flash_Jpg_DMA.ino │ │ │ │ └── panda.h │ │ │ ├── SpriteRotatingCube │ │ │ │ └── SpriteRotatingCube.ino │ │ │ └── boing_ball │ │ │ │ ├── boing_ball.ino │ │ │ │ └── graphic.h │ │ ├── GUI Widgets │ │ │ ├── Buttons │ │ │ │ └── Button_demo │ │ │ │ │ ├── Button_demo.ino │ │ │ │ │ └── Free_Fonts.h │ │ │ ├── Graphs │ │ │ │ ├── Graph_demo_1 │ │ │ │ │ └── Graph_demo_1.ino │ │ │ │ └── Graph_demo_2 │ │ │ │ │ └── Graph_demo_2.ino │ │ │ ├── Meters │ │ │ │ └── Analogue_meters │ │ │ │ │ └── Analogue_meters.ino │ │ │ └── Sliders │ │ │ │ └── Slider_demo │ │ │ │ ├── Free_Fonts.h │ │ │ │ └── Slider_demo.ino │ │ ├── Generic │ │ │ ├── Animated_Eyes_1 │ │ │ │ ├── Animated_Eyes_1.ino │ │ │ │ ├── config.h │ │ │ │ ├── data │ │ │ │ │ ├── catEye.h │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ ├── doeEye.h │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ ├── goatEye.h │ │ │ │ │ ├── logo.h │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ ├── newtEye.h │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ ├── owlEye.h │ │ │ │ │ └── terminatorEye.h │ │ │ │ ├── eye_functions.ino │ │ │ │ ├── user.cpp │ │ │ │ ├── user_bat.cpp │ │ │ │ └── user_xmas.cpp │ │ │ ├── Animated_Eyes_2 │ │ │ │ ├── Animated_Eyes_2.ino │ │ │ │ ├── config.h │ │ │ │ ├── data │ │ │ │ │ ├── catEye.h │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ ├── doeEye.h │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ ├── goatEye.h │ │ │ │ │ ├── logo.h │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ ├── newtEye.h │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ ├── owlEye.h │ │ │ │ │ └── terminatorEye.h │ │ │ │ ├── eye_functions.ino │ │ │ │ ├── user.cpp │ │ │ │ ├── user_bat.cpp │ │ │ │ ├── user_xmas.cpp │ │ │ │ └── wiring.ino │ │ │ ├── ESP32_SDcard_jpeg │ │ │ │ ├── Data │ │ │ │ │ ├── Baboon40.jpg │ │ │ │ │ ├── EagleEye.jpg │ │ │ │ │ ├── Mouse480.jpg │ │ │ │ │ └── lena20k.jpg │ │ │ │ └── ESP32_SDcard_jpeg.ino │ │ │ ├── ESP8266_uncannyEyes │ │ │ │ ├── ESP8266_uncannyEyes.ino │ │ │ │ ├── defaultEye.h │ │ │ │ ├── dragonEye.h │ │ │ │ ├── goatEye.h │ │ │ │ ├── noScleraEye.h │ │ │ │ └── screenshotToConsole.ino │ │ │ ├── Gradient_Fill │ │ │ │ └── Gradient_Fill.ino │ │ │ ├── Julia_Set │ │ │ │ └── Julia_Set.ino │ │ │ ├── Local_Custom_Fonts │ │ │ │ ├── Local_Custom_Fonts.ino │ │ │ │ └── MyFont.h │ │ │ ├── On_Off_Button │ │ │ │ └── On_Off_Button.ino │ │ │ ├── TFT_Button_Label_Datum │ │ │ │ └── TFT_Button_Label_Datum.ino │ │ │ ├── TFT_Flash_Bitmap │ │ │ │ ├── Alert.h │ │ │ │ ├── Close.h │ │ │ │ ├── Info.h │ │ │ │ └── TFT_Flash_Bitmap.ino │ │ │ ├── TFT_SPIFFS_BMP │ │ │ │ ├── BMP_functions.ino │ │ │ │ ├── TFT_SPIFFS_BMP.ino │ │ │ │ └── data │ │ │ │ │ └── parrot.bmp │ │ │ ├── TFT_Screen_Capture │ │ │ │ ├── TFT_Screen_Capture.ino │ │ │ │ ├── processing_sketch.ino │ │ │ │ └── screenServer.ino │ │ │ ├── Touch_calibrate │ │ │ │ └── Touch_calibrate.ino │ │ │ ├── Viewport_Demo │ │ │ │ ├── Viewport_Demo.ino │ │ │ │ └── Viewport_commands.ino │ │ │ ├── Viewport_graphicstest │ │ │ │ └── Viewport_graphicstest.ino │ │ │ ├── alphaBlend_Test │ │ │ │ └── alphaBlend_Test.ino │ │ │ └── drawXBitmap │ │ │ │ ├── drawXBitmap.ino │ │ │ │ └── xbm.h │ │ ├── PNG Images │ │ │ ├── Flash_PNG │ │ │ │ ├── Flash_PNG.ino │ │ │ │ └── panda.h │ │ │ ├── Flash_transparent_PNG │ │ │ │ ├── Flash_transparent_PNG.ino │ │ │ │ ├── SpongeBob.h │ │ │ │ └── png_support.ino │ │ │ ├── LittleFS_PNG │ │ │ │ ├── LittleFS_PNG.ino │ │ │ │ ├── PNG_FS_Support.ino │ │ │ │ └── data │ │ │ │ │ ├── EagleEye.png │ │ │ │ │ └── panda.png │ │ │ └── LittleFS_PNG_DMA │ │ │ │ ├── LittleFS_PNG_DMA.ino │ │ │ │ ├── PNG_FS_Support.ino │ │ │ │ └── data │ │ │ │ ├── EagleEye.png │ │ │ │ └── panda.png │ │ ├── Smooth Fonts │ │ │ ├── FLASH_Array │ │ │ │ ├── Font_Demo_1_Array │ │ │ │ │ ├── Font_Demo_1_Array.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ ├── Font_Demo_2_Array │ │ │ │ │ ├── Font_Demo_2_Array.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ ├── Font_Demo_3_Array │ │ │ │ │ ├── Font_Demo_3_Array.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ └── NotoSansMonoSCB20.h │ │ │ │ ├── Font_Demo_4_Array │ │ │ │ │ ├── Font_Demo_4_Array.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ └── Print_Smooth_Font.ino │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ └── Smooth_font_gradient.ino │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ └── Smooth_font_reading_TFT.ino │ │ │ │ └── Unicode_test │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ ├── Latin_Hiragana_24.h │ │ │ │ │ ├── Unicode_Test_72.h │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ └── data │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ ├── LittleFS │ │ │ │ ├── Font_Demo_1 │ │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Font_Demo_2 │ │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Font_Demo_3 │ │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ ├── Font_Demo_4 │ │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ │ └── data │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ └── Unicode_test │ │ │ │ │ ├── LittleFS_functions.ino │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ └── data │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ ├── SD_Card │ │ │ │ └── ESP32_Smooth_Font_SD │ │ │ │ │ ├── ESP32_Smooth_Font_SD.ino │ │ │ │ │ └── data │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ └── SPIFFS │ │ │ │ ├── Font_Demo_1 │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ ├── Notes.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Font_Demo_2 │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ ├── Notes.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Font_Demo_3 │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ ├── Notes.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ ├── Font_Demo_4 │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ ├── Notes.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Print_Smooth_Font │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ └── data │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ ├── Smooth_font_gradient │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ └── data │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ └── Unicode_test │ │ │ │ ├── SPIFFS_functions.ino │ │ │ │ ├── Unicode_test.ino │ │ │ │ └── data │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ └── Unicode-Test-72.vlw │ │ ├── Smooth Graphics │ │ │ ├── Anti-aliased_Clock │ │ │ │ ├── Anti-aliased_Clock.ino │ │ │ │ ├── NTP_Time.h │ │ │ │ └── NotoSansBold15.h │ │ │ ├── Arc_meter_demo │ │ │ │ ├── Arc_meter_demo.ino │ │ │ │ └── NotoSans_Bold.h │ │ │ ├── Colour_Wheel │ │ │ │ └── Colour_Wheel.ino │ │ │ ├── Draw_Arc │ │ │ │ └── Draw_Arc.ino │ │ │ ├── Draw_Smooth_Circles │ │ │ │ └── Draw_Smooth_Circles.ino │ │ │ ├── Smooth_Arc │ │ │ │ └── Smooth_Arc.ino │ │ │ ├── Smooth_Graphics_Demo │ │ │ │ └── Smooth_Graphics_Demo.ino │ │ │ └── Smooth_Rounded_Rectangles │ │ │ │ └── Smooth_Rounded_Rectangles.ino │ │ ├── Sprite │ │ │ ├── Animated_dial │ │ │ │ ├── Animated_dial.ino │ │ │ │ ├── NotoSansBold36.h │ │ │ │ ├── data │ │ │ │ │ └── dial.jpg │ │ │ │ └── dial.h │ │ │ ├── One_bit_Sprite_Demo │ │ │ │ └── One_bit_Sprite_Demo.ino │ │ │ ├── One_bit_Yin_Yang │ │ │ │ └── One_bit_Yin_Yang.ino │ │ │ ├── Orrery │ │ │ │ ├── Orrery.ino │ │ │ │ ├── astronomy.c │ │ │ │ └── astronomy.h │ │ │ ├── Rotated_Sprite_1 │ │ │ │ └── Rotated_Sprite_1.ino │ │ │ ├── Rotated_Sprite_2 │ │ │ │ └── Rotated_Sprite_2.ino │ │ │ ├── Rotated_Sprite_3 │ │ │ │ ├── Rotated_Sprite_3.ino │ │ │ │ └── data │ │ │ │ │ ├── EagleEye.jpg │ │ │ │ │ └── Eye_80x64.jpg │ │ │ ├── Sprite_RLE_Font_test │ │ │ │ └── Sprite_RLE_Font_test.ino │ │ │ ├── Sprite_TFT_Rainbow │ │ │ │ └── Sprite_TFT_Rainbow.ino │ │ │ ├── Sprite_draw │ │ │ │ └── Sprite_draw.ino │ │ │ ├── Sprite_draw_4bit │ │ │ │ └── Sprite_draw_4bit.ino │ │ │ ├── Sprite_image_4bit │ │ │ │ ├── Sprite_image_4bit.ino │ │ │ │ ├── sample_images.h │ │ │ │ └── starImage.cpp │ │ │ ├── Sprite_scroll │ │ │ │ └── Sprite_scroll.ino │ │ │ ├── Sprite_scroll_16bit │ │ │ │ └── Sprite_scroll_16bit.ino │ │ │ ├── Sprite_scroll_1bit │ │ │ │ └── Sprite_scroll_1bit.ino │ │ │ ├── Sprite_scroll_4bit │ │ │ │ └── Sprite_scroll_4bit.ino │ │ │ ├── Sprite_scroll_8bit │ │ │ │ └── Sprite_scroll_8bit.ino │ │ │ ├── Sprite_scroll_wrap_1bit │ │ │ │ └── Sprite_scroll_wrap_1bit.ino │ │ │ ├── Transparent_Sprite_Demo │ │ │ │ └── Transparent_Sprite_Demo.ino │ │ │ └── Transparent_Sprite_Demo_4bit │ │ │ │ └── Transparent_Sprite_Demo_4bit.ino │ │ ├── Test and diagnostics │ │ │ ├── Colour_Test │ │ │ │ └── Colour_Test.ino │ │ │ ├── Read_User_Setup │ │ │ │ └── Read_User_Setup.ino │ │ │ ├── TFT_ReadWrite_Test │ │ │ │ └── TFT_ReadWrite_Test.ino │ │ │ └── Test_Touch_Controller │ │ │ │ └── Test_Touch_Controller.ino │ │ └── ePaper │ │ │ └── Floyd_Steinberg │ │ │ ├── EPD_Support.h │ │ │ ├── Floyd_Steinberg.ino │ │ │ ├── Floyd_Steinberg_BMP.ino │ │ │ ├── SPIFFS.ino │ │ │ └── data │ │ │ ├── TestCard.bmp │ │ │ └── Tiger.bmp │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── license.txt ├── lv_conf.h └── lvgl │ ├── .codecov.yml │ ├── .editorconfig │ ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug-report.md │ │ ├── config.yml │ │ └── dev-discussion.md │ ├── auto-comment.yml │ ├── pull_request_template.md │ └── workflows │ │ ├── arduino.yml │ │ ├── build_micropython.yml │ │ ├── ccpp.yml │ │ ├── check_conf.yml │ │ ├── check_style.yml │ │ ├── close_old_issues.yml │ │ ├── compile_docs.yml │ │ ├── esp_upload_component.yml │ │ ├── main.yml │ │ └── release.yml │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── CMakeLists.txt │ ├── Kconfig │ ├── LICENCE.txt │ ├── README.md │ ├── README_zh.md │ ├── SConscript │ ├── component.mk │ ├── demos │ ├── README.md │ ├── benchmark │ │ ├── README.md │ │ ├── assets │ │ │ ├── img_benchmark_cogwheel_alpha16.c │ │ │ ├── img_benchmark_cogwheel_argb.c │ │ │ ├── img_benchmark_cogwheel_chroma_keyed.c │ │ │ ├── img_benchmark_cogwheel_indexed16.c │ │ │ ├── img_benchmark_cogwheel_rgb.c │ │ │ ├── img_cogwheel_argb.png │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ ├── img_cogwheel_indexed16.png │ │ │ ├── img_cogwheel_rgb.png │ │ │ ├── lv_font_bechmark_montserrat_12_compr_az.c.c │ │ │ ├── lv_font_bechmark_montserrat_16_compr_az.c.c │ │ │ └── lv_font_bechmark_montserrat_28_compr_az.c.c │ │ ├── lv_demo_benchmark.c │ │ ├── lv_demo_benchmark.h │ │ ├── screenshot1.png │ │ └── screenshot2.png │ ├── keypad_encoder │ │ ├── README.md │ │ ├── lv_demo_keypad_encoder.c │ │ ├── lv_demo_keypad_encoder.h │ │ ├── screenshot1.gif │ │ └── screenshot1.png │ ├── lv_demos.h │ ├── lv_demos.mk │ ├── music │ │ ├── README.md │ │ ├── assets │ │ │ ├── img_lv_demo_music_btn_corner_large.c │ │ │ ├── img_lv_demo_music_btn_list_pause.c │ │ │ ├── img_lv_demo_music_btn_list_pause_large.c │ │ │ ├── img_lv_demo_music_btn_list_play.c │ │ │ ├── img_lv_demo_music_btn_list_play_large.c │ │ │ ├── img_lv_demo_music_btn_loop.c │ │ │ ├── img_lv_demo_music_btn_loop_large.c │ │ │ ├── img_lv_demo_music_btn_next.c │ │ │ ├── img_lv_demo_music_btn_next_large.c │ │ │ ├── img_lv_demo_music_btn_pause.c │ │ │ ├── img_lv_demo_music_btn_pause_large.c │ │ │ ├── img_lv_demo_music_btn_play.c │ │ │ ├── img_lv_demo_music_btn_play_large.c │ │ │ ├── img_lv_demo_music_btn_prev.c │ │ │ ├── img_lv_demo_music_btn_prev_large.c │ │ │ ├── img_lv_demo_music_btn_rnd.c │ │ │ ├── img_lv_demo_music_btn_rnd_large.c │ │ │ ├── img_lv_demo_music_corner_left.c │ │ │ ├── img_lv_demo_music_corner_left_large.c │ │ │ ├── img_lv_demo_music_corner_right.c │ │ │ ├── img_lv_demo_music_corner_right_large.c │ │ │ ├── img_lv_demo_music_cover_1.c │ │ │ ├── img_lv_demo_music_cover_1_large.c │ │ │ ├── img_lv_demo_music_cover_2.c │ │ │ ├── img_lv_demo_music_cover_2_large.c │ │ │ ├── img_lv_demo_music_cover_3.c │ │ │ ├── img_lv_demo_music_cover_3_large.c │ │ │ ├── img_lv_demo_music_icon_1.c │ │ │ ├── img_lv_demo_music_icon_1_large.c │ │ │ ├── img_lv_demo_music_icon_2.c │ │ │ ├── img_lv_demo_music_icon_2_large.c │ │ │ ├── img_lv_demo_music_icon_3.c │ │ │ ├── img_lv_demo_music_icon_3_large.c │ │ │ ├── img_lv_demo_music_icon_4.c │ │ │ ├── img_lv_demo_music_icon_4_large.c │ │ │ ├── img_lv_demo_music_list_border.c │ │ │ ├── img_lv_demo_music_list_border_large.c │ │ │ ├── img_lv_demo_music_logo.c │ │ │ ├── img_lv_demo_music_slider_knob.c │ │ │ ├── img_lv_demo_music_slider_knob_large.c │ │ │ ├── img_lv_demo_music_wave_bottom.c │ │ │ ├── img_lv_demo_music_wave_bottom_large.c │ │ │ ├── img_lv_demo_music_wave_top.c │ │ │ ├── img_lv_demo_music_wave_top_large.c │ │ │ ├── spectrum.py │ │ │ ├── spectrum_1.h │ │ │ ├── spectrum_2.h │ │ │ └── spectrum_3.h │ │ ├── lv_demo_music.c │ │ ├── lv_demo_music.h │ │ ├── lv_demo_music_list.c │ │ ├── lv_demo_music_list.h │ │ ├── lv_demo_music_main.c │ │ ├── lv_demo_music_main.h │ │ └── screenshot1.gif │ ├── stress │ │ ├── README.md │ │ ├── lv_demo_stress.c │ │ ├── lv_demo_stress.h │ │ ├── screenshot1.gif │ │ └── screenshot1.png │ └── widgets │ │ ├── assets │ │ ├── avatar.png │ │ ├── clothes.png │ │ ├── img_clothes.c │ │ ├── img_demo_widgets_avatar.c │ │ ├── img_lvgl_logo.c │ │ └── lvgl_logo.png │ │ ├── lv_demo_widgets.c │ │ ├── lv_demo_widgets.h │ │ ├── lv_demo_widgets.py │ │ ├── screenshot1.gif │ │ └── screenshot1.png │ ├── docs │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CODING_STYLE.md │ ├── CONTRIBUTING.md │ ├── ROADMAP.md │ ├── _ext │ │ └── lv_example.py │ ├── _static │ │ ├── css │ │ │ ├── custom.css │ │ │ └── fontawesome.min.css │ │ └── img │ │ │ ├── home_1.png │ │ │ ├── home_2.png │ │ │ ├── home_3.png │ │ │ ├── home_4.png │ │ │ ├── home_5.png │ │ │ ├── home_6.png │ │ │ └── home_banner.jpg │ ├── _templates │ │ ├── layout.html │ │ └── page.html │ ├── build.py │ ├── conf.py │ ├── example_list.py │ ├── favicon.png │ ├── get-started │ │ ├── bindings │ │ │ ├── cpp.md │ │ │ ├── index.md │ │ │ └── micropython.md │ │ ├── index.md │ │ ├── os │ │ │ ├── freertos.md │ │ │ ├── index.md │ │ │ ├── nuttx.md │ │ │ ├── rt-thread.md │ │ │ └── zephyr.md │ │ ├── platforms │ │ │ ├── arduino.md │ │ │ ├── cmake.md │ │ │ ├── espressif.md │ │ │ ├── index.md │ │ │ ├── nxp.md │ │ │ ├── pc-simulator.md │ │ │ ├── stm32.md │ │ │ └── tasmota-berry.md │ │ └── quick-overview.md │ ├── header.rst │ ├── index.md │ ├── intro │ │ └── index.md │ ├── layouts │ │ ├── flex.md │ │ ├── grid.md │ │ └── index.md │ ├── libs │ │ ├── bmp.md │ │ ├── ffmpeg.md │ │ ├── freetype.md │ │ ├── fsdrv.md │ │ ├── gif.md │ │ ├── index.md │ │ ├── png.md │ │ ├── qrcode.md │ │ ├── rlottie.md │ │ └── sjpg.md │ ├── logo_lvgl.png │ ├── misc │ │ ├── align.png │ │ ├── anim-timeline.png │ │ ├── bidi.png │ │ ├── boxmodel.png │ │ ├── btn_example.png │ │ ├── button_style_example.gif │ │ ├── button_style_example.png │ │ ├── codeblocks.jpg │ │ ├── eclipse.jpg │ │ ├── layers.png │ │ ├── par_child1.png │ │ ├── par_child2.png │ │ ├── par_child3.png │ │ ├── platformio.jpg │ │ ├── qtcreator.jpg │ │ ├── simple_button_example.gif │ │ ├── simple_button_example.png │ │ ├── symbols.png │ │ ├── sys.png │ │ └── visualstudio.jpg │ ├── others │ │ ├── fragment.md │ │ ├── gridnav.md │ │ ├── imgfont.md │ │ ├── index.md │ │ ├── monkey.md │ │ ├── msg.md │ │ └── snapshot.md │ ├── overview │ │ ├── animation.md │ │ ├── color.md │ │ ├── coords.md │ │ ├── display.md │ │ ├── drawing.md │ │ ├── event.md │ │ ├── file-system.md │ │ ├── font.md │ │ ├── image.md │ │ ├── indev.md │ │ ├── index.md │ │ ├── layer.md │ │ ├── new_widget.md │ │ ├── object.md │ │ ├── renderers │ │ │ ├── arm-2d.md │ │ │ ├── dma2d.md │ │ │ ├── index.md │ │ │ ├── pxp-vglite.md │ │ │ ├── sdl.md │ │ │ └── sw.md │ │ ├── scroll.md │ │ ├── style-props.md │ │ ├── style.md │ │ └── timer.md │ ├── porting │ │ ├── display.md │ │ ├── gpu.md │ │ ├── indev.md │ │ ├── index.md │ │ ├── log.md │ │ ├── os.md │ │ ├── project.md │ │ ├── sleep.md │ │ ├── tick.md │ │ └── timer-handler.md │ ├── requirements.txt │ └── widgets │ │ ├── core │ │ ├── arc.md │ │ ├── bar.md │ │ ├── btn.md │ │ ├── btnmatrix.md │ │ ├── canvas.md │ │ ├── checkbox.md │ │ ├── dropdown.md │ │ ├── img.md │ │ ├── index.md │ │ ├── label.md │ │ ├── line.md │ │ ├── roller.md │ │ ├── slider.md │ │ ├── switch.md │ │ ├── table.md │ │ └── textarea.md │ │ ├── extra │ │ ├── animimg.md │ │ ├── calendar.md │ │ ├── chart.md │ │ ├── colorwheel.md │ │ ├── imgbtn.md │ │ ├── index.md │ │ ├── keyboard.md │ │ ├── led.md │ │ ├── list.md │ │ ├── menu.md │ │ ├── meter.md │ │ ├── msgbox.md │ │ ├── span.md │ │ ├── spinbox.md │ │ ├── spinner.md │ │ ├── tabview.md │ │ ├── tileview.md │ │ └── win.md │ │ ├── index.md │ │ └── obj.md │ ├── env_support │ ├── cmake │ │ ├── custom.cmake │ │ ├── esp.cmake │ │ ├── micropython.cmake │ │ └── zephyr.cmake │ ├── cmsis-pack │ │ ├── LVGL.lvgl.1.0.3-alpha.pack │ │ ├── LVGL.lvgl.pdsc │ │ ├── LVGL.pidx │ │ ├── README.md │ │ ├── gen_pack.sh │ │ ├── lv_cmsis_pack.txt │ │ └── lv_conf_cmsis.h │ ├── rt-thread │ │ ├── SConscript │ │ ├── lv_rt_thread_conf.h │ │ └── lv_rt_thread_port.c │ └── zephyr │ │ └── module.yml │ ├── examples │ ├── anim │ │ ├── index.rst │ │ ├── lv_example_anim.h │ │ ├── lv_example_anim_1.c │ │ ├── lv_example_anim_1.py │ │ ├── lv_example_anim_2.c │ │ ├── lv_example_anim_2.py │ │ ├── lv_example_anim_3.c │ │ ├── lv_example_anim_3.py │ │ ├── lv_example_anim_timeline_1.c │ │ └── lv_example_anim_timeline_1.py │ ├── arduino │ │ └── LVGL_Arduino │ │ │ └── LVGL_Arduino.ino │ ├── assets │ │ ├── animimg001.c │ │ ├── animimg001.png │ │ ├── animimg002.c │ │ ├── animimg002.png │ │ ├── animimg003.c │ │ ├── animimg003.png │ │ ├── caret_down.png │ │ ├── emoji │ │ │ ├── F600.png │ │ │ └── img_emoji_F617.c │ │ ├── font │ │ │ ├── lv_font_simsun_16_cjk.fnt │ │ │ ├── montserrat-16.fnt │ │ │ └── montserrat-22.fnt │ │ ├── img_caret_down.c │ │ ├── img_caret_down.png │ │ ├── img_cogwheel_alpha16.c │ │ ├── img_cogwheel_argb.c │ │ ├── img_cogwheel_argb.png │ │ ├── img_cogwheel_chroma_keyed.c │ │ ├── img_cogwheel_chroma_keyed.png │ │ ├── img_cogwheel_indexed16.c │ │ ├── img_cogwheel_indexed16.png │ │ ├── img_cogwheel_rgb.c │ │ ├── img_cogwheel_rgb.png │ │ ├── img_hand.c │ │ ├── img_hand_hour.png │ │ ├── img_hand_min.png │ │ ├── img_skew_strip.c │ │ ├── img_skew_strip.png │ │ ├── img_skew_strip_80x20_argb8888.fnt │ │ ├── img_star.c │ │ ├── img_star.png │ │ ├── img_strip.png │ │ ├── imgbtn_left.c │ │ ├── imgbtn_left.png │ │ ├── imgbtn_mid.c │ │ ├── imgbtn_mid.png │ │ ├── imgbtn_right.c │ │ └── imgbtn_right.png │ ├── event │ │ ├── index.rst │ │ ├── lv_example_event.h │ │ ├── lv_example_event_1.c │ │ ├── lv_example_event_1.py │ │ ├── lv_example_event_2.c │ │ ├── lv_example_event_2.py │ │ ├── lv_example_event_3.c │ │ ├── lv_example_event_3.py │ │ └── lv_example_event_4.c │ ├── get_started │ │ ├── index.rst │ │ ├── lv_example_get_started.h │ │ ├── lv_example_get_started_1.c │ │ ├── lv_example_get_started_1.py │ │ ├── lv_example_get_started_2.c │ │ ├── lv_example_get_started_2.py │ │ ├── lv_example_get_started_3.c │ │ └── lv_example_get_started_3.py │ ├── header.py │ ├── layouts │ │ ├── flex │ │ │ ├── index.rst │ │ │ ├── lv_example_flex.h │ │ │ ├── lv_example_flex_1.c │ │ │ ├── lv_example_flex_1.py │ │ │ ├── lv_example_flex_2.c │ │ │ ├── lv_example_flex_2.py │ │ │ ├── lv_example_flex_3.c │ │ │ ├── lv_example_flex_3.py │ │ │ ├── lv_example_flex_4.c │ │ │ ├── lv_example_flex_4.py │ │ │ ├── lv_example_flex_5.c │ │ │ ├── lv_example_flex_5.py │ │ │ ├── lv_example_flex_6.c │ │ │ └── lv_example_flex_6.py │ │ ├── grid │ │ │ ├── index.rst │ │ │ ├── lv_example_grid.h │ │ │ ├── lv_example_grid_1.c │ │ │ ├── lv_example_grid_1.py │ │ │ ├── lv_example_grid_2.c │ │ │ ├── lv_example_grid_2.py │ │ │ ├── lv_example_grid_3.c │ │ │ ├── lv_example_grid_3.py │ │ │ ├── lv_example_grid_4.c │ │ │ ├── lv_example_grid_4.py │ │ │ ├── lv_example_grid_5.c │ │ │ ├── lv_example_grid_5.py │ │ │ ├── lv_example_grid_6.c │ │ │ └── lv_example_grid_6.py │ │ └── lv_example_layout.h │ ├── libs │ │ ├── bmp │ │ │ ├── example_16bit.bmp │ │ │ ├── example_24bit.bmp │ │ │ ├── example_32bit.bmp │ │ │ ├── index.rst │ │ │ ├── lv_example_bmp.h │ │ │ ├── lv_example_bmp_1.c │ │ │ └── lv_example_bmp_1.py │ │ ├── ffmpeg │ │ │ ├── birds.mp4 │ │ │ ├── ffmpeg.png │ │ │ ├── index.rst │ │ │ ├── lv_example_ffmpeg.h │ │ │ ├── lv_example_ffmpeg_1.c │ │ │ └── lv_example_ffmpeg_2.c │ │ ├── freetype │ │ │ ├── arial.ttf │ │ │ ├── index.rst │ │ │ ├── lv_example_freetype.h │ │ │ ├── lv_example_freetype_1.c │ │ │ └── lv_example_freetype_1.py │ │ ├── gif │ │ │ ├── bulb.gif │ │ │ ├── img_bulb_gif.c │ │ │ ├── img_bulb_gif.py │ │ │ ├── index.rst │ │ │ ├── lv_example_gif.h │ │ │ ├── lv_example_gif_1.c │ │ │ └── lv_example_gif_1.py │ │ ├── lv_example_libs.h │ │ ├── png │ │ │ ├── img_wink_png.c │ │ │ ├── img_wink_png.py │ │ │ ├── index.rst │ │ │ ├── lv_example_png.h │ │ │ ├── lv_example_png_1.c │ │ │ ├── lv_example_png_1.py │ │ │ └── wink.png │ │ ├── qrcode │ │ │ ├── index.rst │ │ │ ├── lv_example_qrcode.h │ │ │ ├── lv_example_qrcode_1.c │ │ │ └── lv_example_qrcode_1.py │ │ ├── rlottie │ │ │ ├── index.rst │ │ │ ├── lv_example_rlottie.h │ │ │ ├── lv_example_rlottie_1.c │ │ │ ├── lv_example_rlottie_1.py │ │ │ ├── lv_example_rlottie_2.c │ │ │ ├── lv_example_rlottie_2.py │ │ │ ├── lv_example_rlottie_approve.c │ │ │ ├── lv_example_rlottie_approve.json │ │ │ └── lv_example_rlottie_approve.py │ │ └── sjpg │ │ │ ├── index.rst │ │ │ ├── lv_example_sjpg.h │ │ │ ├── lv_example_sjpg_1.c │ │ │ ├── lv_example_sjpg_1.py │ │ │ └── small_image.sjpg │ ├── lv_examples.h │ ├── lv_examples.mk │ ├── others │ │ ├── fragment │ │ │ ├── index.rst │ │ │ ├── lv_example_fragment.h │ │ │ ├── lv_example_fragment_1.c │ │ │ └── lv_example_fragment_2.c │ │ ├── gridnav │ │ │ ├── index.rst │ │ │ ├── lv_example_gridnav.h │ │ │ ├── lv_example_gridnav_1.c │ │ │ ├── lv_example_gridnav_2.c │ │ │ ├── lv_example_gridnav_3.c │ │ │ └── lv_example_gridnav_4.c │ │ ├── imgfont │ │ │ ├── index.rst │ │ │ ├── lv_example_imgfont.h │ │ │ └── lv_example_imgfont_1.c │ │ ├── lv_example_others.h │ │ ├── monkey │ │ │ ├── index.rst │ │ │ ├── lv_example_monkey.h │ │ │ ├── lv_example_monkey_1.c │ │ │ ├── lv_example_monkey_2.c │ │ │ └── lv_example_monkey_3.c │ │ ├── msg │ │ │ ├── index.rst │ │ │ ├── lv_example_msg.h │ │ │ ├── lv_example_msg_1.c │ │ │ ├── lv_example_msg_2.c │ │ │ └── lv_example_msg_3.c │ │ └── snapshot │ │ │ ├── index.rst │ │ │ ├── lv_example_snapshot.h │ │ │ ├── lv_example_snapshot_1.c │ │ │ └── lv_example_snapshot_1.py │ ├── porting │ │ ├── lv_port_disp_template.c │ │ ├── lv_port_disp_template.h │ │ ├── lv_port_fs_template.c │ │ ├── lv_port_fs_template.h │ │ ├── lv_port_indev_template.c │ │ └── lv_port_indev_template.h │ ├── scroll │ │ ├── index.rst │ │ ├── lv_example_scroll.h │ │ ├── lv_example_scroll_1.c │ │ ├── lv_example_scroll_1.py │ │ ├── lv_example_scroll_2.c │ │ ├── lv_example_scroll_2.py │ │ ├── lv_example_scroll_3.c │ │ ├── lv_example_scroll_3.py │ │ ├── lv_example_scroll_4.c │ │ ├── lv_example_scroll_4.py │ │ ├── lv_example_scroll_5.c │ │ ├── lv_example_scroll_5.py │ │ ├── lv_example_scroll_6.c │ │ └── lv_example_scroll_6.py │ ├── styles │ │ ├── index.rst │ │ ├── lv_example_style.h │ │ ├── lv_example_style_1.c │ │ ├── lv_example_style_1.py │ │ ├── lv_example_style_10.c │ │ ├── lv_example_style_10.py │ │ ├── lv_example_style_11.c │ │ ├── lv_example_style_11.py │ │ ├── lv_example_style_12.c │ │ ├── lv_example_style_12.py │ │ ├── lv_example_style_13.c │ │ ├── lv_example_style_13.py │ │ ├── lv_example_style_14.c │ │ ├── lv_example_style_14.py │ │ ├── lv_example_style_2.c │ │ ├── lv_example_style_2.py │ │ ├── lv_example_style_3.c │ │ ├── lv_example_style_3.py │ │ ├── lv_example_style_4.c │ │ ├── lv_example_style_4.py │ │ ├── lv_example_style_5.c │ │ ├── lv_example_style_5.py │ │ ├── lv_example_style_6.c │ │ ├── lv_example_style_6.py │ │ ├── lv_example_style_7.c │ │ ├── lv_example_style_7.py │ │ ├── lv_example_style_8.c │ │ ├── lv_example_style_8.py │ │ ├── lv_example_style_9.c │ │ └── lv_example_style_9.py │ ├── test_ex.sh │ └── widgets │ │ ├── animimg │ │ ├── index.rst │ │ ├── lv_example_animimg_1.c │ │ └── lv_example_animimg_1.py │ │ ├── arc │ │ ├── index.rst │ │ ├── lv_example_arc_1.c │ │ ├── lv_example_arc_1.py │ │ ├── lv_example_arc_2.c │ │ └── lv_example_arc_2.py │ │ ├── bar │ │ ├── index.rst │ │ ├── lv_example_bar_1.c │ │ ├── lv_example_bar_1.py │ │ ├── lv_example_bar_2.c │ │ ├── lv_example_bar_2.py │ │ ├── lv_example_bar_3.c │ │ ├── lv_example_bar_3.py │ │ ├── lv_example_bar_4.c │ │ ├── lv_example_bar_4.py │ │ ├── lv_example_bar_5.c │ │ ├── lv_example_bar_5.py │ │ ├── lv_example_bar_6.c │ │ ├── lv_example_bar_6.py │ │ └── test.py │ │ ├── btn │ │ ├── index.rst │ │ ├── lv_example_btn_1.c │ │ ├── lv_example_btn_1.py │ │ ├── lv_example_btn_2.c │ │ ├── lv_example_btn_2.py │ │ ├── lv_example_btn_3.c │ │ └── lv_example_btn_3.py │ │ ├── btnmatrix │ │ ├── index.rst │ │ ├── lv_example_btnmatrix_1.c │ │ ├── lv_example_btnmatrix_1.py │ │ ├── lv_example_btnmatrix_2.c │ │ ├── lv_example_btnmatrix_2.py │ │ ├── lv_example_btnmatrix_3.c │ │ └── lv_example_btnmatrix_3.py │ │ ├── calendar │ │ ├── index.rst │ │ ├── lv_example_calendar_1.c │ │ └── lv_example_calendar_1.py │ │ ├── canvas │ │ ├── index.rst │ │ ├── lv_example_canvas_1.c │ │ ├── lv_example_canvas_1.py │ │ ├── lv_example_canvas_2.c │ │ └── lv_example_canvas_2.py │ │ ├── chart │ │ ├── index.rst │ │ ├── lv_example_chart_1.c │ │ ├── lv_example_chart_1.py │ │ ├── lv_example_chart_2.c │ │ ├── lv_example_chart_2.py │ │ ├── lv_example_chart_3.c │ │ ├── lv_example_chart_3.py │ │ ├── lv_example_chart_4.c │ │ ├── lv_example_chart_4.py │ │ ├── lv_example_chart_5.c │ │ ├── lv_example_chart_5.py │ │ ├── lv_example_chart_6.c │ │ ├── lv_example_chart_6.py │ │ ├── lv_example_chart_7.c │ │ ├── lv_example_chart_7.py │ │ ├── lv_example_chart_8.c │ │ ├── lv_example_chart_8.py │ │ ├── lv_example_chart_9.c │ │ └── lv_example_chart_9.py │ │ ├── checkbox │ │ ├── index.rst │ │ ├── lv_example_checkbox_1.c │ │ ├── lv_example_checkbox_1.py │ │ └── lv_example_checkbox_2.c │ │ ├── colorwheel │ │ ├── index.rst │ │ ├── lv_example_colorwheel_1.c │ │ └── lv_example_colorwheel_1.py │ │ ├── dropdown │ │ ├── index.rst │ │ ├── lv_example_dropdown_1.c │ │ ├── lv_example_dropdown_1.py │ │ ├── lv_example_dropdown_2.c │ │ ├── lv_example_dropdown_2.py │ │ ├── lv_example_dropdown_3.c │ │ └── lv_example_dropdown_3.py │ │ ├── img │ │ ├── index.rst │ │ ├── lv_example_img_1.c │ │ ├── lv_example_img_1.py │ │ ├── lv_example_img_2.c │ │ ├── lv_example_img_2.py │ │ ├── lv_example_img_3.c │ │ ├── lv_example_img_3.py │ │ ├── lv_example_img_4.c │ │ └── lv_example_img_4.py │ │ ├── imgbtn │ │ ├── index.rst │ │ ├── lv_example_imgbtn_1.c │ │ └── lv_example_imgbtn_1.py │ │ ├── keyboard │ │ ├── index.rst │ │ ├── lv_example_keyboard_1.c │ │ └── lv_example_keyboard_1.py │ │ ├── label │ │ ├── index.rst │ │ ├── lv_example_label_1.c │ │ ├── lv_example_label_1.py │ │ ├── lv_example_label_2.c │ │ ├── lv_example_label_2.py │ │ ├── lv_example_label_3.c │ │ ├── lv_example_label_3.py │ │ ├── lv_example_label_4.c │ │ ├── lv_example_label_5.c │ │ └── lv_example_label_5.py │ │ ├── led │ │ ├── index.rst │ │ ├── lv_example_led_1.c │ │ └── lv_example_led_1.py │ │ ├── line │ │ ├── index.rst │ │ ├── lv_example_line_1.c │ │ └── lv_example_line_1.py │ │ ├── list │ │ ├── index.rst │ │ ├── lv_example_list_1.c │ │ ├── lv_example_list_1.py │ │ ├── lv_example_list_2.c │ │ ├── lv_example_list_2.py │ │ └── test.py │ │ ├── lv_example_widgets.h │ │ ├── menu │ │ ├── index.rst │ │ ├── lv_example_menu_1.c │ │ ├── lv_example_menu_1.py │ │ ├── lv_example_menu_2.c │ │ ├── lv_example_menu_2.py │ │ ├── lv_example_menu_3.c │ │ ├── lv_example_menu_3.py │ │ ├── lv_example_menu_4.c │ │ ├── lv_example_menu_4.py │ │ └── lv_example_menu_5.c │ │ ├── meter │ │ ├── index.rst │ │ ├── lv_example_meter_1.c │ │ ├── lv_example_meter_1.py │ │ ├── lv_example_meter_2.c │ │ ├── lv_example_meter_2.py │ │ ├── lv_example_meter_3.c │ │ ├── lv_example_meter_3.py │ │ ├── lv_example_meter_4.c │ │ └── lv_example_meter_4.py │ │ ├── msgbox │ │ ├── index.rst │ │ ├── lv_example_msgbox_1.c │ │ └── lv_example_msgbox_1.py │ │ ├── obj │ │ ├── index.rst │ │ ├── lv_example_obj_1.c │ │ ├── lv_example_obj_1.py │ │ ├── lv_example_obj_2.c │ │ └── lv_example_obj_2.py │ │ ├── roller │ │ ├── index.rst │ │ ├── lv_example_roller_1.c │ │ ├── lv_example_roller_1.py │ │ ├── lv_example_roller_2.c │ │ ├── lv_example_roller_2.py │ │ ├── lv_example_roller_3.c │ │ └── lv_example_roller_3.py │ │ ├── slider │ │ ├── index.rst │ │ ├── lv_example_slider_1.c │ │ ├── lv_example_slider_1.py │ │ ├── lv_example_slider_2.c │ │ ├── lv_example_slider_2.py │ │ ├── lv_example_slider_3.c │ │ └── lv_example_slider_3.py │ │ ├── span │ │ ├── index.rst │ │ ├── lv_example_span_1.c │ │ └── lv_example_span_1.py │ │ ├── spinbox │ │ ├── index.rst │ │ ├── lv_example_spinbox_1.c │ │ └── lv_example_spinbox_1.py │ │ ├── spinner │ │ ├── index.rst │ │ ├── lv_example_spinner_1.c │ │ └── lv_example_spinner_1.py │ │ ├── switch │ │ ├── index.rst │ │ ├── lv_example_switch_1.c │ │ └── lv_example_switch_1.py │ │ ├── table │ │ ├── index.rst │ │ ├── lv_example_table_1.c │ │ ├── lv_example_table_1.py │ │ ├── lv_example_table_2.c │ │ └── lv_example_table_2.py │ │ ├── tabview │ │ ├── index.rst │ │ ├── lv_example_tabview_1.c │ │ ├── lv_example_tabview_1.py │ │ ├── lv_example_tabview_2.c │ │ └── lv_example_tabview_2.py │ │ ├── textarea │ │ ├── index.rst │ │ ├── lv_example_textarea_1.c │ │ ├── lv_example_textarea_1.py │ │ ├── lv_example_textarea_2.c │ │ ├── lv_example_textarea_2.py │ │ ├── lv_example_textarea_3.c │ │ └── lv_example_textarea_3.py │ │ ├── tileview │ │ ├── index.rst │ │ ├── lv_example_tileview_1.c │ │ └── lv_example_tileview_1.py │ │ └── win │ │ ├── index.rst │ │ ├── lv_example_win_1.c │ │ └── lv_example_win_1.py │ ├── idf_component.yml │ ├── library.json │ ├── library.properties │ ├── lv_conf_temp.h │ ├── lvgl.h │ ├── lvgl.mk │ ├── scripts │ ├── .gitignore │ ├── Doxyfile │ ├── build_html_examples.sh │ ├── built_in_font │ │ ├── DejaVuSans.ttf │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ ├── Montserrat-Medium.ttf │ │ ├── SimSun.woff │ │ ├── built_in_font_gen.py │ │ ├── generate_all.py │ │ └── unscii-8.ttf │ ├── changelog-template.hbs │ ├── changelog_gen.sh │ ├── code-format.cfg │ ├── code-format.py │ ├── cppcheck_run.sh │ ├── filetohex.py │ ├── find_version.sh │ ├── genexamplelist.sh │ ├── infer_run.sh │ ├── install-prerequisites.sh │ ├── jpg_to_sjpg.py │ ├── lv_conf_internal_gen.py │ ├── release │ │ ├── com.py │ │ ├── commits.txt │ │ ├── patch.py │ │ └── release.py │ └── style_api_gen.py │ ├── src │ ├── core │ │ ├── lv_core.mk │ │ ├── lv_disp.c │ │ ├── lv_disp.h │ │ ├── lv_event.c │ │ ├── lv_event.h │ │ ├── lv_group.c │ │ ├── lv_group.h │ │ ├── lv_indev.c │ │ ├── lv_indev.h │ │ ├── lv_indev_scroll.c │ │ ├── lv_indev_scroll.h │ │ ├── lv_obj.c │ │ ├── lv_obj.h │ │ ├── lv_obj_class.c │ │ ├── lv_obj_class.h │ │ ├── lv_obj_draw.c │ │ ├── lv_obj_draw.h │ │ ├── lv_obj_pos.c │ │ ├── lv_obj_pos.h │ │ ├── lv_obj_scroll.c │ │ ├── lv_obj_scroll.h │ │ ├── lv_obj_style.c │ │ ├── lv_obj_style.h │ │ ├── lv_obj_style_gen.c │ │ ├── lv_obj_style_gen.h │ │ ├── lv_obj_tree.c │ │ ├── lv_obj_tree.h │ │ ├── lv_refr.c │ │ ├── lv_refr.h │ │ ├── lv_theme.c │ │ └── lv_theme.h │ ├── draw │ │ ├── arm2d │ │ │ ├── lv_draw_arm2d.mk │ │ │ ├── lv_gpu_arm2d.c │ │ │ └── lv_gpu_arm2d.h │ │ ├── lv_draw.c │ │ ├── lv_draw.h │ │ ├── lv_draw.mk │ │ ├── lv_draw_arc.c │ │ ├── lv_draw_arc.h │ │ ├── lv_draw_img.c │ │ ├── lv_draw_img.h │ │ ├── lv_draw_label.c │ │ ├── lv_draw_label.h │ │ ├── lv_draw_line.c │ │ ├── lv_draw_line.h │ │ ├── lv_draw_mask.c │ │ ├── lv_draw_mask.h │ │ ├── lv_draw_rect.c │ │ ├── lv_draw_rect.h │ │ ├── lv_draw_triangle.c │ │ ├── lv_draw_triangle.h │ │ ├── lv_img_buf.c │ │ ├── lv_img_buf.h │ │ ├── lv_img_cache.c │ │ ├── lv_img_cache.h │ │ ├── lv_img_decoder.c │ │ ├── lv_img_decoder.h │ │ ├── nxp_pxp │ │ │ ├── lv_draw_nxp_pxp.mk │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ └── lv_gpu_nxp_pxp_osa.h │ │ ├── nxp_vglite │ │ │ ├── lv_draw_nxp_vglite.mk │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ └── lv_gpu_nxp_vglite.h │ │ ├── sdl │ │ │ ├── README.md │ │ │ ├── lv_draw_sdl.c │ │ │ ├── lv_draw_sdl.h │ │ │ ├── lv_draw_sdl.mk │ │ │ ├── lv_draw_sdl_arc.c │ │ │ ├── lv_draw_sdl_bg.c │ │ │ ├── lv_draw_sdl_composite.c │ │ │ ├── lv_draw_sdl_composite.h │ │ │ ├── lv_draw_sdl_img.c │ │ │ ├── lv_draw_sdl_img.h │ │ │ ├── lv_draw_sdl_label.c │ │ │ ├── lv_draw_sdl_line.c │ │ │ ├── lv_draw_sdl_mask.c │ │ │ ├── lv_draw_sdl_mask.h │ │ │ ├── lv_draw_sdl_polygon.c │ │ │ ├── lv_draw_sdl_priv.h │ │ │ ├── lv_draw_sdl_rect.c │ │ │ ├── lv_draw_sdl_rect.h │ │ │ ├── lv_draw_sdl_stack_blur.c │ │ │ ├── lv_draw_sdl_stack_blur.h │ │ │ ├── lv_draw_sdl_texture_cache.c │ │ │ ├── lv_draw_sdl_texture_cache.h │ │ │ ├── lv_draw_sdl_utils.c │ │ │ └── lv_draw_sdl_utils.h │ │ ├── stm32_dma2d │ │ │ ├── lv_draw_stm32_dma2d.mk │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ └── lv_gpu_stm32_dma2d.h │ │ └── sw │ │ │ ├── lv_draw_sw.c │ │ │ ├── lv_draw_sw.h │ │ │ ├── lv_draw_sw.mk │ │ │ ├── lv_draw_sw_arc.c │ │ │ ├── lv_draw_sw_blend.c │ │ │ ├── lv_draw_sw_blend.h │ │ │ ├── lv_draw_sw_dither.c │ │ │ ├── lv_draw_sw_dither.h │ │ │ ├── lv_draw_sw_gradient.c │ │ │ ├── lv_draw_sw_gradient.h │ │ │ ├── lv_draw_sw_img.c │ │ │ ├── lv_draw_sw_letter.c │ │ │ ├── lv_draw_sw_line.c │ │ │ ├── lv_draw_sw_polygon.c │ │ │ └── lv_draw_sw_rect.c │ ├── extra │ │ ├── README.md │ │ ├── layouts │ │ │ ├── flex │ │ │ │ ├── lv_flex.c │ │ │ │ └── lv_flex.h │ │ │ ├── grid │ │ │ │ ├── lv_grid.c │ │ │ │ └── lv_grid.h │ │ │ └── lv_layouts.h │ │ ├── libs │ │ │ ├── bmp │ │ │ │ ├── lv_bmp.c │ │ │ │ └── lv_bmp.h │ │ │ ├── ffmpeg │ │ │ │ ├── lv_ffmpeg.c │ │ │ │ └── lv_ffmpeg.h │ │ │ ├── freetype │ │ │ │ ├── arial.ttf │ │ │ │ ├── lv_freetype.c │ │ │ │ └── lv_freetype.h │ │ │ ├── fsdrv │ │ │ │ ├── lv_fs_fatfs.c │ │ │ │ ├── lv_fs_posix.c │ │ │ │ ├── lv_fs_stdio.c │ │ │ │ ├── lv_fs_win32.c │ │ │ │ └── lv_fsdrv.h │ │ │ ├── gif │ │ │ │ ├── gifdec.c │ │ │ │ ├── gifdec.h │ │ │ │ ├── lv_gif.c │ │ │ │ └── lv_gif.h │ │ │ ├── lv_libs.h │ │ │ ├── png │ │ │ │ ├── lodepng.c │ │ │ │ ├── lodepng.h │ │ │ │ ├── lv_png.c │ │ │ │ └── lv_png.h │ │ │ ├── qrcode │ │ │ │ ├── lv_qrcode.c │ │ │ │ ├── lv_qrcode.h │ │ │ │ ├── qrcodegen.c │ │ │ │ └── qrcodegen.h │ │ │ ├── rlottie │ │ │ │ ├── lv_rlottie.c │ │ │ │ └── lv_rlottie.h │ │ │ └── sjpg │ │ │ │ ├── lv_sjpg.c │ │ │ │ ├── lv_sjpg.h │ │ │ │ ├── tjpgd.c │ │ │ │ ├── tjpgd.h │ │ │ │ └── tjpgdcnf.h │ │ ├── lv_extra.c │ │ ├── lv_extra.h │ │ ├── lv_extra.mk │ │ ├── others │ │ │ ├── fragment │ │ │ │ ├── README.md │ │ │ │ ├── lv_fragment.c │ │ │ │ ├── lv_fragment.h │ │ │ │ └── lv_fragment_manager.c │ │ │ ├── gridnav │ │ │ │ ├── lv_gridnav.c │ │ │ │ └── lv_gridnav.h │ │ │ ├── imgfont │ │ │ │ ├── lv_imgfont.c │ │ │ │ └── lv_imgfont.h │ │ │ ├── lv_others.h │ │ │ ├── monkey │ │ │ │ ├── lv_monkey.c │ │ │ │ └── lv_monkey.h │ │ │ ├── msg │ │ │ │ ├── lv_msg.c │ │ │ │ └── lv_msg.h │ │ │ └── snapshot │ │ │ │ ├── lv_snapshot.c │ │ │ │ └── lv_snapshot.h │ │ ├── themes │ │ │ ├── basic │ │ │ │ ├── lv_theme_basic.c │ │ │ │ └── lv_theme_basic.h │ │ │ ├── default │ │ │ │ ├── lv_theme_default.c │ │ │ │ └── lv_theme_default.h │ │ │ ├── lv_themes.h │ │ │ └── mono │ │ │ │ ├── lv_theme_mono.c │ │ │ │ └── lv_theme_mono.h │ │ └── widgets │ │ │ ├── animimg │ │ │ ├── lv_animimg.c │ │ │ └── lv_animimg.h │ │ │ ├── calendar │ │ │ ├── lv_calendar.c │ │ │ ├── lv_calendar.h │ │ │ ├── lv_calendar_header_arrow.c │ │ │ ├── lv_calendar_header_arrow.h │ │ │ ├── lv_calendar_header_dropdown.c │ │ │ └── lv_calendar_header_dropdown.h │ │ │ ├── chart │ │ │ ├── lv_chart.c │ │ │ └── lv_chart.h │ │ │ ├── colorwheel │ │ │ ├── lv_colorwheel.c │ │ │ └── lv_colorwheel.h │ │ │ ├── imgbtn │ │ │ ├── lv_imgbtn.c │ │ │ └── lv_imgbtn.h │ │ │ ├── keyboard │ │ │ ├── lv_keyboard.c │ │ │ └── lv_keyboard.h │ │ │ ├── led │ │ │ ├── lv_led.c │ │ │ └── lv_led.h │ │ │ ├── list │ │ │ ├── lv_list.c │ │ │ └── lv_list.h │ │ │ ├── lv_widgets.h │ │ │ ├── menu │ │ │ ├── lv_menu.c │ │ │ └── lv_menu.h │ │ │ ├── meter │ │ │ ├── lv_meter.c │ │ │ └── lv_meter.h │ │ │ ├── msgbox │ │ │ ├── lv_msgbox.c │ │ │ └── lv_msgbox.h │ │ │ ├── span │ │ │ ├── lv_span.c │ │ │ └── lv_span.h │ │ │ ├── spinbox │ │ │ ├── lv_spinbox.c │ │ │ └── lv_spinbox.h │ │ │ ├── spinner │ │ │ ├── lv_spinner.c │ │ │ └── lv_spinner.h │ │ │ ├── tabview │ │ │ ├── lv_tabview.c │ │ │ └── lv_tabview.h │ │ │ ├── tileview │ │ │ ├── lv_tileview.c │ │ │ └── lv_tileview.h │ │ │ └── win │ │ │ ├── lv_win.c │ │ │ └── lv_win.h │ ├── font │ │ ├── korean.ttf │ │ ├── lv_font.c │ │ ├── lv_font.h │ │ ├── lv_font.mk │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ ├── lv_font_fmt_txt.c │ │ ├── lv_font_fmt_txt.h │ │ ├── lv_font_loader.c │ │ ├── lv_font_loader.h │ │ ├── lv_font_montserrat_10.c │ │ ├── lv_font_montserrat_12.c │ │ ├── lv_font_montserrat_12_subpx.c │ │ ├── lv_font_montserrat_14.c │ │ ├── lv_font_montserrat_16.c │ │ ├── lv_font_montserrat_18.c │ │ ├── lv_font_montserrat_20.c │ │ ├── lv_font_montserrat_22.c │ │ ├── lv_font_montserrat_24.c │ │ ├── lv_font_montserrat_26.c │ │ ├── lv_font_montserrat_28.c │ │ ├── lv_font_montserrat_28_compressed.c │ │ ├── lv_font_montserrat_30.c │ │ ├── lv_font_montserrat_32.c │ │ ├── lv_font_montserrat_34.c │ │ ├── lv_font_montserrat_36.c │ │ ├── lv_font_montserrat_38.c │ │ ├── lv_font_montserrat_40.c │ │ ├── lv_font_montserrat_42.c │ │ ├── lv_font_montserrat_44.c │ │ ├── lv_font_montserrat_46.c │ │ ├── lv_font_montserrat_48.c │ │ ├── lv_font_montserrat_8.c │ │ ├── lv_font_simsun_16_cjk.c │ │ ├── lv_font_unscii_16.c │ │ ├── lv_font_unscii_8.c │ │ └── lv_symbol_def.h │ ├── hal │ │ ├── lv_hal.h │ │ ├── lv_hal.mk │ │ ├── lv_hal_disp.c │ │ ├── lv_hal_disp.h │ │ ├── lv_hal_indev.c │ │ ├── lv_hal_indev.h │ │ ├── lv_hal_tick.c │ │ └── lv_hal_tick.h │ ├── lv_api_map.h │ ├── lv_conf_internal.h │ ├── lv_conf_kconfig.h │ ├── lvgl.h │ ├── misc │ │ ├── lv_anim.c │ │ ├── lv_anim.h │ │ ├── lv_anim_timeline.c │ │ ├── lv_anim_timeline.h │ │ ├── lv_area.c │ │ ├── lv_area.h │ │ ├── lv_assert.h │ │ ├── lv_async.c │ │ ├── lv_async.h │ │ ├── lv_bidi.c │ │ ├── lv_bidi.h │ │ ├── lv_color.c │ │ ├── lv_color.h │ │ ├── lv_fs.c │ │ ├── lv_fs.h │ │ ├── lv_gc.c │ │ ├── lv_gc.h │ │ ├── lv_ll.c │ │ ├── lv_ll.h │ │ ├── lv_log.c │ │ ├── lv_log.h │ │ ├── lv_lru.c │ │ ├── lv_lru.h │ │ ├── lv_math.c │ │ ├── lv_math.h │ │ ├── lv_mem.c │ │ ├── lv_mem.h │ │ ├── lv_misc.mk │ │ ├── lv_printf.c │ │ ├── lv_printf.h │ │ ├── lv_style.c │ │ ├── lv_style.h │ │ ├── lv_style_gen.c │ │ ├── lv_style_gen.h │ │ ├── lv_templ.c │ │ ├── lv_templ.h │ │ ├── lv_timer.c │ │ ├── lv_timer.h │ │ ├── lv_tlsf.c │ │ ├── lv_tlsf.h │ │ ├── lv_txt.c │ │ ├── lv_txt.h │ │ ├── lv_txt_ap.c │ │ ├── lv_txt_ap.h │ │ ├── lv_types.h │ │ ├── lv_utils.c │ │ └── lv_utils.h │ └── widgets │ │ ├── lv_arc.c │ │ ├── lv_arc.h │ │ ├── lv_bar.c │ │ ├── lv_bar.h │ │ ├── lv_btn.c │ │ ├── lv_btn.h │ │ ├── lv_btnmatrix.c │ │ ├── lv_btnmatrix.h │ │ ├── lv_canvas.c │ │ ├── lv_canvas.h │ │ ├── lv_checkbox.c │ │ ├── lv_checkbox.h │ │ ├── lv_dropdown.c │ │ ├── lv_dropdown.h │ │ ├── lv_img.c │ │ ├── lv_img.h │ │ ├── lv_label.c │ │ ├── lv_label.h │ │ ├── lv_line.c │ │ ├── lv_line.h │ │ ├── lv_objx_templ.c │ │ ├── lv_objx_templ.h │ │ ├── lv_roller.c │ │ ├── lv_roller.h │ │ ├── lv_slider.c │ │ ├── lv_slider.h │ │ ├── lv_switch.c │ │ ├── lv_switch.h │ │ ├── lv_table.c │ │ ├── lv_table.h │ │ ├── lv_textarea.c │ │ ├── lv_textarea.h │ │ └── lv_widgets.mk │ └── tests │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── config.yml │ ├── main.py │ ├── ref_imgs │ ├── dropdown_1.png │ ├── dropdown_2.png │ ├── scr1.png │ └── table_1.png │ ├── src │ ├── lv_test_conf.h │ ├── lv_test_helpers.h │ ├── lv_test_indev.c │ ├── lv_test_indev.h │ ├── lv_test_init.c │ ├── lv_test_init.h │ ├── test_cases │ │ ├── _test_template.c │ │ ├── test_arc.c │ │ ├── test_bar.c │ │ ├── test_checkbox.c │ │ ├── test_config.c │ │ ├── test_demo_stress.c │ │ ├── test_demo_widgets.c │ │ ├── test_dropdown.c │ │ ├── test_event.c │ │ ├── test_font_loader.c │ │ ├── test_fs.c │ │ ├── test_line.c │ │ ├── test_obj_tree.c │ │ ├── test_slider.c │ │ ├── test_snapshot.c │ │ ├── test_style.c │ │ ├── test_switch.c │ │ ├── test_table.c │ │ ├── test_textarea.c │ │ └── test_txt.c │ ├── test_files │ │ └── readtest.txt │ └── test_fonts │ │ ├── font_1.c │ │ ├── font_1.fnt │ │ ├── font_2.c │ │ ├── font_2.fnt │ │ ├── font_3.c │ │ └── font_3.fnt │ └── unity │ ├── generate_test_runner.rb │ ├── run_test.erb │ ├── type_sanitizer.rb │ ├── unity.c │ ├── unity.h │ ├── unity_internals.h │ ├── unity_support.c │ └── unity_support.h ├── platformio.ini └── schematic ├── T-QT-Pro.pdf └── T_QT.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/.gitignore -------------------------------------------------------------------------------- /3D_file/086_T-QT_COV-A09.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/3D_file/086_T-QT_COV-A09.stl -------------------------------------------------------------------------------- /3D_file/087_T-QT_COV-B09.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/3D_file/087_T-QT_COV-B09.stl -------------------------------------------------------------------------------- /3D_file/088_T-QT_COV-C08.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/3D_file/088_T-QT_COV-C08.stl -------------------------------------------------------------------------------- /3D_file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/3D_file/README.md -------------------------------------------------------------------------------- /3D_file/T_QT.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/3D_file/T_QT.DXF -------------------------------------------------------------------------------- /3D_file/T_QT_Pro.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/3D_file/T_QT_Pro.stp -------------------------------------------------------------------------------- /3D_file/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/3D_file/shell.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/README.md -------------------------------------------------------------------------------- /board/esp32-s3-t-qt-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/board/esp32-s3-t-qt-pro.json -------------------------------------------------------------------------------- /doc/GC9107 DataSheet V1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/doc/GC9107 DataSheet V1.2.pdf -------------------------------------------------------------------------------- /doc/esp32-s3_datasheet_cn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/doc/esp32-s3_datasheet_cn.pdf -------------------------------------------------------------------------------- /doc/esp32-s3_datasheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/doc/esp32-s3_datasheet_en.pdf -------------------------------------------------------------------------------- /examples/Arduino_Life/Arduino_Life.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/Arduino_Life/Arduino_Life.ino -------------------------------------------------------------------------------- /examples/DeepSleep/DeepSleep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/DeepSleep/DeepSleep.ino -------------------------------------------------------------------------------- /examples/DeepSleep/image_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/DeepSleep/image_logo.h -------------------------------------------------------------------------------- /examples/LVGL_Arduino/LVGL_Arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Arduino/LVGL_Arduino.ino -------------------------------------------------------------------------------- /examples/LVGL_Factory/LOGO128x128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/LOGO128x128.c -------------------------------------------------------------------------------- /examples/LVGL_Factory/LVGL_Factory.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/LVGL_Factory.ino -------------------------------------------------------------------------------- /examples/LVGL_Factory/clock_bg_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/clock_bg_img.c -------------------------------------------------------------------------------- /examples/LVGL_Factory/clock_hour_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/clock_hour_img.c -------------------------------------------------------------------------------- /examples/LVGL_Factory/clock_min_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/clock_min_img.c -------------------------------------------------------------------------------- /examples/LVGL_Factory/clock_sec_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/clock_sec_img.c -------------------------------------------------------------------------------- /examples/LVGL_Factory/data/t-qt-pro-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/data/t-qt-pro-2.jpg -------------------------------------------------------------------------------- /examples/LVGL_Factory/duck_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/duck_gif.c -------------------------------------------------------------------------------- /examples/LVGL_Factory/image_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/image_logo.h -------------------------------------------------------------------------------- /examples/LVGL_Factory/img_t_qt_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/img_t_qt_cert.h -------------------------------------------------------------------------------- /examples/LVGL_Factory/lvgl_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/lvgl_gui.cpp -------------------------------------------------------------------------------- /examples/LVGL_Factory/lvgl_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/lvgl_gui.h -------------------------------------------------------------------------------- /examples/LVGL_Factory/test_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/LVGL_Factory/test_img.c -------------------------------------------------------------------------------- /examples/Pong_v3/Pong_v3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/Pong_v3/Pong_v3.ino -------------------------------------------------------------------------------- /examples/RLE_Font_test/RLE_Font_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/RLE_Font_test/RLE_Font_test.ino -------------------------------------------------------------------------------- /examples/RotationTest/RotationTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/RotationTest/RotationTest.ino -------------------------------------------------------------------------------- /examples/SensorBNO080/SensorBNO080.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/SensorBNO080/SensorBNO080.ino -------------------------------------------------------------------------------- /examples/TFT_Char_times/TFT_Char_times.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/TFT_Char_times/TFT_Char_times.ino -------------------------------------------------------------------------------- /examples/TFT_Ellipse/TFT_Ellipse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/TFT_Ellipse/TFT_Ellipse.ino -------------------------------------------------------------------------------- /examples/TFT_Meter_5/TFT_Meter_5.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/TFT_Meter_5/TFT_Meter_5.ino -------------------------------------------------------------------------------- /examples/TFT_Rainbow/TFT_Rainbow.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/examples/TFT_Rainbow/TFT_Rainbow.ino -------------------------------------------------------------------------------- /extras/GC9A01_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/extras/GC9A01_Defines.h -------------------------------------------------------------------------------- /extras/GC9A01_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/extras/GC9A01_Init.h -------------------------------------------------------------------------------- /extras/GC9A01_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/extras/GC9A01_Rotation.h -------------------------------------------------------------------------------- /extras/Setup211_LilyGo_T_QT_Pro_S3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/extras/Setup211_LilyGo_T_QT_Pro_S3.h -------------------------------------------------------------------------------- /firmware/T-QT-Pro-N8_LVGL_Factory_240815.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/firmware/T-QT-Pro-N8_LVGL_Factory_240815.bin -------------------------------------------------------------------------------- /firmware/esptool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/firmware/esptool.exe -------------------------------------------------------------------------------- /firmware/flash QT-Pro-N4R2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/firmware/flash QT-Pro-N4R2.bat -------------------------------------------------------------------------------- /firmware/flash QT-Pro-N8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/firmware/flash QT-Pro-N8.bat -------------------------------------------------------------------------------- /image/N4R2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/image/N4R2.jpg -------------------------------------------------------------------------------- /image/N8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/image/N8.jpg -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/image/logo.png -------------------------------------------------------------------------------- /image/pinmap_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/image/pinmap_en.jpg -------------------------------------------------------------------------------- /image/specifications_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/image/specifications_en.jpg -------------------------------------------------------------------------------- /lib/OneButton/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/OneButton/CHANGELOG.md -------------------------------------------------------------------------------- /lib/OneButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/OneButton/LICENSE -------------------------------------------------------------------------------- /lib/OneButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/OneButton/README.md -------------------------------------------------------------------------------- /lib/OneButton/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/OneButton/keywords.txt -------------------------------------------------------------------------------- /lib/OneButton/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/OneButton/library.json -------------------------------------------------------------------------------- /lib/OneButton/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/OneButton/library.properties -------------------------------------------------------------------------------- /lib/OneButton/src/OneButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/OneButton/src/OneButton.cpp -------------------------------------------------------------------------------- /lib/OneButton/src/OneButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/OneButton/src/OneButton.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /lib/TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /lib/TFT_eSPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/CMakeLists.txt -------------------------------------------------------------------------------- /lib/TFT_eSPI/Extensions/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Extensions/Button.cpp -------------------------------------------------------------------------------- /lib/TFT_eSPI/Extensions/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Extensions/Button.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Extensions/Smooth_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Extensions/Smooth_font.cpp -------------------------------------------------------------------------------- /lib/TFT_eSPI/Extensions/Smooth_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Extensions/Smooth_font.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Extensions/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Extensions/Sprite.cpp -------------------------------------------------------------------------------- /lib/TFT_eSPI/Extensions/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Extensions/Sprite.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Extensions/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Extensions/Touch.cpp -------------------------------------------------------------------------------- /lib/TFT_eSPI/Extensions/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Extensions/Touch.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font32rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font32rle.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font32rle.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font64rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font64rle.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font64rle.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font72rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font72rle.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font72rle.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font72x53rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font72x53rle.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font72x53rle.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font7srle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font7srle.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/Font7srle.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/license.txt -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/GFXFF/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/GFXFF/print.txt -------------------------------------------------------------------------------- /lib/TFT_eSPI/Fonts/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Fonts/glcdfont.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Kconfig -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/pio_SPI.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/pio_SPI.pio.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Processors/pio_SPI_18bit.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Processors/pio_SPI_18bit.pio.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/README.md -------------------------------------------------------------------------------- /lib/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/HX8357B_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/HX8357B_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/HX8357C_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/HX8357C_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/HX8357D_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/HX8357D_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9163_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9163_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9225_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9225_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9341_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9341_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9481_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9481_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9486_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9486_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9488_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9488_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ILI9488_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ILI9488_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/R61581_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/R61581_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/R61581_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/RM68120_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/RM68120_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/RM68120_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/RM68120_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/RM68140_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/RM68140_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/RM68140_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/RM68140_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/S6D02A1_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/SSD1351_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/SSD1351_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/SSD1351_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/SSD1351_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/SSD1963_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/SSD1963_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/SSD1963_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/SSD1963_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7735_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7735_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7789_2_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7789_2_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7789_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7789_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_Drivers/ST7796_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_Drivers/ST7796_Rotation.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_config.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /lib/TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/Tools/bmp2array4bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Tools/bmp2array4bit/README.md -------------------------------------------------------------------------------- /lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setup.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setup_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setup_Select.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup135_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup135_ST7789.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup15_HX8357D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup15_HX8357D.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup17_ePaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup18_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup200_GC9A01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup200_GC9A01.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup203_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup203_ST7789.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup20_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup20_ILI9488.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup21_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup21_ILI9488.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup22_TTGO_T4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup22_TTGO_T4.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup23_TTGO_TM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup23_TTGO_TM.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup24_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup2_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup43_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup47_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/SetupX_Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/SetupX_Template.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/User_Setups/User_Custom_Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/User_Setups/User_Custom_Fonts.h -------------------------------------------------------------------------------- /lib/TFT_eSPI/docs/ESP-IDF/Using ESP-IDF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/docs/ESP-IDF/Using ESP-IDF.txt -------------------------------------------------------------------------------- /lib/TFT_eSPI/docs/PlatformIO/rp2040.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/docs/PlatformIO/rp2040.txt -------------------------------------------------------------------------------- /lib/TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /lib/TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/library.json -------------------------------------------------------------------------------- /lib/TFT_eSPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/library.properties -------------------------------------------------------------------------------- /lib/TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /lib/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lv_conf.h -------------------------------------------------------------------------------- /lib/lvgl/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.codecov.yml -------------------------------------------------------------------------------- /lib/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.editorconfig -------------------------------------------------------------------------------- /lib/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /lib/lvgl/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/auto-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/auto-comment.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/pull_request_template.md -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/workflows/arduino.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/check_conf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/workflows/check_conf.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/check_style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/workflows/check_style.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/compile_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/workflows/compile_docs.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/workflows/main.yml -------------------------------------------------------------------------------- /lib/lvgl/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.github/workflows/release.yml -------------------------------------------------------------------------------- /lib/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.gitignore -------------------------------------------------------------------------------- /lib/lvgl/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/.pre-commit-config.yaml -------------------------------------------------------------------------------- /lib/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/Kconfig -------------------------------------------------------------------------------- /lib/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /lib/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/README.md -------------------------------------------------------------------------------- /lib/lvgl/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/README_zh.md -------------------------------------------------------------------------------- /lib/lvgl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/SConscript -------------------------------------------------------------------------------- /lib/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/component.mk -------------------------------------------------------------------------------- /lib/lvgl/demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/README.md -------------------------------------------------------------------------------- /lib/lvgl/demos/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/benchmark/README.md -------------------------------------------------------------------------------- /lib/lvgl/demos/benchmark/lv_demo_benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/benchmark/lv_demo_benchmark.c -------------------------------------------------------------------------------- /lib/lvgl/demos/benchmark/lv_demo_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/benchmark/lv_demo_benchmark.h -------------------------------------------------------------------------------- /lib/lvgl/demos/benchmark/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/benchmark/screenshot1.png -------------------------------------------------------------------------------- /lib/lvgl/demos/benchmark/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/benchmark/screenshot2.png -------------------------------------------------------------------------------- /lib/lvgl/demos/keypad_encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/keypad_encoder/README.md -------------------------------------------------------------------------------- /lib/lvgl/demos/lv_demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/lv_demos.h -------------------------------------------------------------------------------- /lib/lvgl/demos/lv_demos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/lv_demos.mk -------------------------------------------------------------------------------- /lib/lvgl/demos/music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/README.md -------------------------------------------------------------------------------- /lib/lvgl/demos/music/assets/spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/assets/spectrum.py -------------------------------------------------------------------------------- /lib/lvgl/demos/music/assets/spectrum_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/assets/spectrum_1.h -------------------------------------------------------------------------------- /lib/lvgl/demos/music/assets/spectrum_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/assets/spectrum_2.h -------------------------------------------------------------------------------- /lib/lvgl/demos/music/assets/spectrum_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/assets/spectrum_3.h -------------------------------------------------------------------------------- /lib/lvgl/demos/music/lv_demo_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/lv_demo_music.c -------------------------------------------------------------------------------- /lib/lvgl/demos/music/lv_demo_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/lv_demo_music.h -------------------------------------------------------------------------------- /lib/lvgl/demos/music/lv_demo_music_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/lv_demo_music_list.c -------------------------------------------------------------------------------- /lib/lvgl/demos/music/lv_demo_music_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/lv_demo_music_list.h -------------------------------------------------------------------------------- /lib/lvgl/demos/music/lv_demo_music_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/lv_demo_music_main.c -------------------------------------------------------------------------------- /lib/lvgl/demos/music/lv_demo_music_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/lv_demo_music_main.h -------------------------------------------------------------------------------- /lib/lvgl/demos/music/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/music/screenshot1.gif -------------------------------------------------------------------------------- /lib/lvgl/demos/stress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/stress/README.md -------------------------------------------------------------------------------- /lib/lvgl/demos/stress/lv_demo_stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/stress/lv_demo_stress.c -------------------------------------------------------------------------------- /lib/lvgl/demos/stress/lv_demo_stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/stress/lv_demo_stress.h -------------------------------------------------------------------------------- /lib/lvgl/demos/stress/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/stress/screenshot1.gif -------------------------------------------------------------------------------- /lib/lvgl/demos/stress/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/stress/screenshot1.png -------------------------------------------------------------------------------- /lib/lvgl/demos/widgets/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/widgets/assets/avatar.png -------------------------------------------------------------------------------- /lib/lvgl/demos/widgets/assets/clothes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/widgets/assets/clothes.png -------------------------------------------------------------------------------- /lib/lvgl/demos/widgets/assets/img_clothes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/widgets/assets/img_clothes.c -------------------------------------------------------------------------------- /lib/lvgl/demos/widgets/assets/lvgl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/widgets/assets/lvgl_logo.png -------------------------------------------------------------------------------- /lib/lvgl/demos/widgets/lv_demo_widgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/widgets/lv_demo_widgets.c -------------------------------------------------------------------------------- /lib/lvgl/demos/widgets/lv_demo_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/widgets/lv_demo_widgets.h -------------------------------------------------------------------------------- /lib/lvgl/demos/widgets/lv_demo_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/widgets/lv_demo_widgets.py -------------------------------------------------------------------------------- /lib/lvgl/demos/widgets/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/widgets/screenshot1.gif -------------------------------------------------------------------------------- /lib/lvgl/demos/widgets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/demos/widgets/screenshot1.png -------------------------------------------------------------------------------- /lib/lvgl/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/CHANGELOG.md -------------------------------------------------------------------------------- /lib/lvgl/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /lib/lvgl/docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /lib/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/lvgl/docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/ROADMAP.md -------------------------------------------------------------------------------- /lib/lvgl/docs/_ext/lv_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_ext/lv_example.py -------------------------------------------------------------------------------- /lib/lvgl/docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_static/css/custom.css -------------------------------------------------------------------------------- /lib/lvgl/docs/_static/img/home_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_static/img/home_1.png -------------------------------------------------------------------------------- /lib/lvgl/docs/_static/img/home_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_static/img/home_2.png -------------------------------------------------------------------------------- /lib/lvgl/docs/_static/img/home_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_static/img/home_3.png -------------------------------------------------------------------------------- /lib/lvgl/docs/_static/img/home_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_static/img/home_4.png -------------------------------------------------------------------------------- /lib/lvgl/docs/_static/img/home_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_static/img/home_5.png -------------------------------------------------------------------------------- /lib/lvgl/docs/_static/img/home_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_static/img/home_6.png -------------------------------------------------------------------------------- /lib/lvgl/docs/_static/img/home_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_static/img/home_banner.jpg -------------------------------------------------------------------------------- /lib/lvgl/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_templates/layout.html -------------------------------------------------------------------------------- /lib/lvgl/docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/_templates/page.html -------------------------------------------------------------------------------- /lib/lvgl/docs/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/build.py -------------------------------------------------------------------------------- /lib/lvgl/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/conf.py -------------------------------------------------------------------------------- /lib/lvgl/docs/example_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/example_list.py -------------------------------------------------------------------------------- /lib/lvgl/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/favicon.png -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/bindings/cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/bindings/cpp.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/bindings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/bindings/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/os/freertos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/os/freertos.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/os/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/os/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/os/nuttx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/os/nuttx.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/os/rt-thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/os/rt-thread.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/os/zephyr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/os/zephyr.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/platforms/cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/platforms/cmake.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/platforms/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/platforms/nxp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/platforms/nxp.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/platforms/stm32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/platforms/stm32.md -------------------------------------------------------------------------------- /lib/lvgl/docs/get-started/quick-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/get-started/quick-overview.md -------------------------------------------------------------------------------- /lib/lvgl/docs/header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/header.rst -------------------------------------------------------------------------------- /lib/lvgl/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/intro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/intro/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/layouts/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/layouts/flex.md -------------------------------------------------------------------------------- /lib/lvgl/docs/layouts/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/layouts/grid.md -------------------------------------------------------------------------------- /lib/lvgl/docs/layouts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/layouts/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/bmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/bmp.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/ffmpeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/ffmpeg.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/freetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/freetype.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/fsdrv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/fsdrv.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/gif.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/png.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/png.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/qrcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/qrcode.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/rlottie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/rlottie.md -------------------------------------------------------------------------------- /lib/lvgl/docs/libs/sjpg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/libs/sjpg.md -------------------------------------------------------------------------------- /lib/lvgl/docs/logo_lvgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/logo_lvgl.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/align.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/anim-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/anim-timeline.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/bidi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/bidi.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/boxmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/boxmodel.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/btn_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/btn_example.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/button_style_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/button_style_example.gif -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/button_style_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/button_style_example.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/codeblocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/codeblocks.jpg -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/eclipse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/eclipse.jpg -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/layers.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/par_child1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/par_child1.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/par_child2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/par_child2.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/par_child3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/par_child3.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/platformio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/platformio.jpg -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/qtcreator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/qtcreator.jpg -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/simple_button_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/simple_button_example.gif -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/simple_button_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/simple_button_example.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/symbols.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/sys.png -------------------------------------------------------------------------------- /lib/lvgl/docs/misc/visualstudio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/misc/visualstudio.jpg -------------------------------------------------------------------------------- /lib/lvgl/docs/others/fragment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/others/fragment.md -------------------------------------------------------------------------------- /lib/lvgl/docs/others/gridnav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/others/gridnav.md -------------------------------------------------------------------------------- /lib/lvgl/docs/others/imgfont.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/others/imgfont.md -------------------------------------------------------------------------------- /lib/lvgl/docs/others/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/others/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/others/monkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/others/monkey.md -------------------------------------------------------------------------------- /lib/lvgl/docs/others/msg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/others/msg.md -------------------------------------------------------------------------------- /lib/lvgl/docs/others/snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/others/snapshot.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/animation.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/color.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/coords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/coords.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/display.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/drawing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/drawing.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/event.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/file-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/file-system.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/font.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/image.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/indev.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/layer.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/new_widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/new_widget.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/object.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/renderers/arm-2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/renderers/arm-2d.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/renderers/dma2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/renderers/dma2d.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/renderers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/renderers/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/renderers/sdl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/renderers/sdl.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/renderers/sw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/renderers/sw.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/scroll.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/style-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/style-props.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/style.md -------------------------------------------------------------------------------- /lib/lvgl/docs/overview/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/overview/timer.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/display.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/gpu.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/indev.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/log.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/os.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/project.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/sleep.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/tick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/tick.md -------------------------------------------------------------------------------- /lib/lvgl/docs/porting/timer-handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/porting/timer-handler.md -------------------------------------------------------------------------------- /lib/lvgl/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/requirements.txt -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/arc.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/bar.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/btn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/btn.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/btnmatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/btnmatrix.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/canvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/canvas.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/checkbox.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/dropdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/dropdown.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/img.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/img.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/label.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/line.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/roller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/roller.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/slider.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/switch.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/table.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/core/textarea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/core/textarea.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/animimg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/animimg.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/calendar.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/chart.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/colorwheel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/colorwheel.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/imgbtn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/imgbtn.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/keyboard.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/led.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/led.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/list.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/menu.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/meter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/meter.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/msgbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/msgbox.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/span.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/spinbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/spinbox.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/spinner.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/tabview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/tabview.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/tileview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/tileview.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/extra/win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/extra/win.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/index.md -------------------------------------------------------------------------------- /lib/lvgl/docs/widgets/obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/docs/widgets/obj.md -------------------------------------------------------------------------------- /lib/lvgl/env_support/cmake/custom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/env_support/cmake/custom.cmake -------------------------------------------------------------------------------- /lib/lvgl/env_support/cmake/esp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/env_support/cmake/esp.cmake -------------------------------------------------------------------------------- /lib/lvgl/env_support/cmake/micropython.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/env_support/cmake/micropython.cmake -------------------------------------------------------------------------------- /lib/lvgl/env_support/cmake/zephyr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/env_support/cmake/zephyr.cmake -------------------------------------------------------------------------------- /lib/lvgl/env_support/cmsis-pack/LVGL.pidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/env_support/cmsis-pack/LVGL.pidx -------------------------------------------------------------------------------- /lib/lvgl/env_support/cmsis-pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/env_support/cmsis-pack/README.md -------------------------------------------------------------------------------- /lib/lvgl/env_support/cmsis-pack/gen_pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/env_support/cmsis-pack/gen_pack.sh -------------------------------------------------------------------------------- /lib/lvgl/env_support/rt-thread/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/env_support/rt-thread/SConscript -------------------------------------------------------------------------------- /lib/lvgl/env_support/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/anim/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/anim/lv_example_anim.h -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/anim/lv_example_anim_1.c -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/anim/lv_example_anim_1.py -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/anim/lv_example_anim_2.c -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/anim/lv_example_anim_2.py -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/anim/lv_example_anim_3.c -------------------------------------------------------------------------------- /lib/lvgl/examples/anim/lv_example_anim_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/anim/lv_example_anim_3.py -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/animimg001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/animimg001.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/animimg001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/animimg001.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/animimg002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/animimg002.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/animimg002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/animimg002.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/animimg003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/animimg003.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/animimg003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/animimg003.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/caret_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/caret_down.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/emoji/F600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/emoji/F600.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_caret_down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_caret_down.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_caret_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_caret_down.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_cogwheel_argb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_cogwheel_argb.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_cogwheel_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_cogwheel_rgb.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_hand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_hand.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_hand_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_hand_hour.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_hand_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_hand_min.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_skew_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_skew_strip.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_skew_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_skew_strip.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_star.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_star.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_star.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/img_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/img_strip.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/imgbtn_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/imgbtn_left.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/imgbtn_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/imgbtn_left.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/imgbtn_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/imgbtn_mid.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/imgbtn_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/imgbtn_mid.png -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/imgbtn_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/imgbtn_right.c -------------------------------------------------------------------------------- /lib/lvgl/examples/assets/imgbtn_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/assets/imgbtn_right.png -------------------------------------------------------------------------------- /lib/lvgl/examples/event/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/event/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/event/lv_example_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/event/lv_example_event.h -------------------------------------------------------------------------------- /lib/lvgl/examples/event/lv_example_event_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/event/lv_example_event_1.c -------------------------------------------------------------------------------- /lib/lvgl/examples/event/lv_example_event_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/event/lv_example_event_2.c -------------------------------------------------------------------------------- /lib/lvgl/examples/event/lv_example_event_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/event/lv_example_event_3.c -------------------------------------------------------------------------------- /lib/lvgl/examples/event/lv_example_event_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/event/lv_example_event_4.c -------------------------------------------------------------------------------- /lib/lvgl/examples/get_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/get_started/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/header.py -------------------------------------------------------------------------------- /lib/lvgl/examples/layouts/flex/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/layouts/flex/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/layouts/grid/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/layouts/grid/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/bmp/example_16bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/bmp/example_16bit.bmp -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/bmp/example_24bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/bmp/example_24bit.bmp -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/bmp/example_32bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/bmp/example_32bit.bmp -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/bmp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/bmp/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/bmp/lv_example_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/bmp/lv_example_bmp.h -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/ffmpeg/birds.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/ffmpeg/birds.mp4 -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/ffmpeg/ffmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/ffmpeg/ffmpeg.png -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/ffmpeg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/ffmpeg/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/freetype/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/freetype/arial.ttf -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/freetype/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/freetype/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/gif/bulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/gif/bulb.gif -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/gif/img_bulb_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/gif/img_bulb_gif.c -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/gif/img_bulb_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/gif/img_bulb_gif.py -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/gif/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/gif/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/gif/lv_example_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/gif/lv_example_gif.h -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/lv_example_libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/lv_example_libs.h -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/png/img_wink_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/png/img_wink_png.c -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/png/img_wink_png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/png/img_wink_png.py -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/png/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/png/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/png/lv_example_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/png/lv_example_png.h -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/png/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/png/wink.png -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/qrcode/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/qrcode/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/rlottie/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/rlottie/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/libs/sjpg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/libs/sjpg/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/lv_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/lv_examples.h -------------------------------------------------------------------------------- /lib/lvgl/examples/lv_examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/lv_examples.mk -------------------------------------------------------------------------------- /lib/lvgl/examples/others/monkey/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/others/monkey/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/others/msg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/others/msg/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/scroll/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/scroll/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/styles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/styles/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/test_ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/test_ex.sh -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/arc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/arc/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/bar/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/bar/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/bar/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/bar/test.py -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/btn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/btn/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/chart/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/chart/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/img/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/img/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/label/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/label/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/led/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/led/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/line/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/line/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/list/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/list/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/list/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/list/test.py -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/menu/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/menu/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/meter/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/meter/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/obj/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/obj/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/span/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/span/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/table/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/table/index.rst -------------------------------------------------------------------------------- /lib/lvgl/examples/widgets/win/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/examples/widgets/win/index.rst -------------------------------------------------------------------------------- /lib/lvgl/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/idf_component.yml -------------------------------------------------------------------------------- /lib/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/library.json -------------------------------------------------------------------------------- /lib/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/library.properties -------------------------------------------------------------------------------- /lib/lvgl/lv_conf_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/lv_conf_temp.h -------------------------------------------------------------------------------- /lib/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/lvgl.h -------------------------------------------------------------------------------- /lib/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/lvgl.mk -------------------------------------------------------------------------------- /lib/lvgl/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | CHANGELOG_LAST.md 2 | -------------------------------------------------------------------------------- /lib/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /lib/lvgl/scripts/build_html_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/build_html_examples.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/changelog-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/changelog-template.hbs -------------------------------------------------------------------------------- /lib/lvgl/scripts/changelog_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/changelog_gen.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/code-format.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/code-format.cfg -------------------------------------------------------------------------------- /lib/lvgl/scripts/code-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/code-format.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/cppcheck_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/cppcheck_run.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/filetohex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/filetohex.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/find_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/find_version.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/genexamplelist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/genexamplelist.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/infer_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/infer_run.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/install-prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/install-prerequisites.sh -------------------------------------------------------------------------------- /lib/lvgl/scripts/jpg_to_sjpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/jpg_to_sjpg.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/lv_conf_internal_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/lv_conf_internal_gen.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/release/com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/release/com.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/release/commits.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/lvgl/scripts/release/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/release/patch.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/release/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/release/release.py -------------------------------------------------------------------------------- /lib/lvgl/scripts/style_api_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/scripts/style_api_gen.py -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_core.mk -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_event.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_event.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_group.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_group.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_indev.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_indev.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_indev_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_indev_scroll.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_indev_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_indev_scroll.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_class.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_class.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_draw.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_draw.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_pos.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_pos.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_scroll.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_scroll.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_style.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_style.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_style_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_style_gen.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_style_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_style_gen.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_tree.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_obj_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_obj_tree.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_theme.c -------------------------------------------------------------------------------- /lib/lvgl/src/core/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/core/lv_theme.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/arm2d/lv_draw_arm2d.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/arm2d/lv_draw_arm2d.mk -------------------------------------------------------------------------------- /lib/lvgl/src/draw/arm2d/lv_gpu_arm2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/arm2d/lv_gpu_arm2d.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/arm2d/lv_gpu_arm2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/arm2d/lv_gpu_arm2d.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw.mk -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_arc.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_arc.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_img.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_img.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_label.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_label.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_line.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_line.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_mask.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_mask.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_rect.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_rect.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_triangle.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_draw_triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_draw_triangle.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_img_buf.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_img_buf.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_img_cache.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_img_cache.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_img_decoder.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/lv_img_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/lv_img_decoder.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/README.md -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl.mk -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_arc.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_bg.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_img.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_img.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_label.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_line.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_mask.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_mask.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_priv.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_rect.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_rect.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_utils.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sdl/lv_draw_sdl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sdl/lv_draw_sdl_utils.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw.mk -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_arc.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_blend.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_blend.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_dither.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_dither.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_dither.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_dither.h -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_img.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_letter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_letter.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_line.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_polygon.c -------------------------------------------------------------------------------- /lib/lvgl/src/draw/sw/lv_draw_sw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/draw/sw/lv_draw_sw_rect.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/README.md -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/flex/lv_flex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/layouts/flex/lv_flex.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/flex/lv_flex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/layouts/flex/lv_flex.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/grid/lv_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/layouts/grid/lv_grid.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/grid/lv_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/layouts/grid/lv_grid.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/layouts/lv_layouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/layouts/lv_layouts.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/bmp/lv_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/bmp/lv_bmp.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/bmp/lv_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/bmp/lv_bmp.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/fsdrv/lv_fsdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/fsdrv/lv_fsdrv.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/gif/gifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/gif/gifdec.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/gif/gifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/gif/gifdec.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/gif/lv_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/gif/lv_gif.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/gif/lv_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/gif/lv_gif.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/lv_libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/lv_libs.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/png/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/png/lodepng.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/png/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/png/lodepng.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/png/lv_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/png/lv_png.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/png/lv_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/png/lv_png.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/sjpg/lv_sjpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/sjpg/lv_sjpg.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/sjpg/lv_sjpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/sjpg/lv_sjpg.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/sjpg/tjpgd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/sjpg/tjpgd.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/sjpg/tjpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/sjpg/tjpgd.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/libs/sjpg/tjpgdcnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/libs/sjpg/tjpgdcnf.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/lv_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/lv_extra.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/lv_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/lv_extra.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/lv_extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/lv_extra.mk -------------------------------------------------------------------------------- /lib/lvgl/src/extra/others/fragment/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/lvgl/src/extra/others/lv_others.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/others/lv_others.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/others/msg/lv_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/others/msg/lv_msg.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/others/msg/lv_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/others/msg/lv_msg.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/themes/lv_themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/themes/lv_themes.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/led/lv_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/led/lv_led.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/led/lv_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/led/lv_led.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/list/lv_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/list/lv_list.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/list/lv_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/list/lv_list.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/lv_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/lv_widgets.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/menu/lv_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/menu/lv_menu.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/menu/lv_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/menu/lv_menu.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/span/lv_span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/span/lv_span.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/span/lv_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/span/lv_span.h -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/win/lv_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/win/lv_win.c -------------------------------------------------------------------------------- /lib/lvgl/src/extra/widgets/win/lv_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/extra/widgets/win/lv_win.h -------------------------------------------------------------------------------- /lib/lvgl/src/font/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/korean.ttf -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font.mk -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_fmt_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_fmt_txt.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_fmt_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_fmt_txt.h -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_loader.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_loader.h -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_10.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_12.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_14.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_16.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_18.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_20.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_22.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_24.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_26.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_26.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_28.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_30.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_32.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_34.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_36.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_38.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_38.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_40.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_42.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_44.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_46.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_46.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_48.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_montserrat_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_montserrat_8.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_simsun_16_cjk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_simsun_16_cjk.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_unscii_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_unscii_16.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_font_unscii_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_font_unscii_8.c -------------------------------------------------------------------------------- /lib/lvgl/src/font/lv_symbol_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/font/lv_symbol_def.h -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/hal/lv_hal_disp.c -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/hal/lv_hal_disp.h -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/hal/lv_hal_indev.c -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/hal/lv_hal_indev.h -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/hal/lv_hal_tick.c -------------------------------------------------------------------------------- /lib/lvgl/src/hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/hal/lv_hal_tick.h -------------------------------------------------------------------------------- /lib/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /lib/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /lib/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /lib/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_anim_timeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_anim_timeline.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_anim_timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_anim_timeline.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_assert.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_async.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_async.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_color.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_color.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_lru.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_lru.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_misc.mk -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_printf.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_printf.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_style.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_style.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_style_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_style_gen.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_style_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_style_gen.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_templ.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_templ.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_timer.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_timer.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_txt_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_txt_ap.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_txt_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_txt_ap.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_types.h -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_utils.c -------------------------------------------------------------------------------- /lib/lvgl/src/misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/misc/lv_utils.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_arc.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_arc.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_bar.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_bar.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_btn.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_btn.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_btnmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_btnmatrix.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_btnmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_btnmatrix.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_canvas.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_canvas.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_checkbox.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_checkbox.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_dropdown.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_dropdown.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_img.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_img.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_label.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_label.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_line.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_line.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_objx_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_objx_templ.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_objx_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_objx_templ.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_roller.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_roller.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_slider.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_slider.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_switch.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_switch.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_table.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_table.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_textarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_textarea.c -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_textarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_textarea.h -------------------------------------------------------------------------------- /lib/lvgl/src/widgets/lv_widgets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/src/widgets/lv_widgets.mk -------------------------------------------------------------------------------- /lib/lvgl/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *_Runner.c 3 | -------------------------------------------------------------------------------- /lib/lvgl/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lvgl/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/README.md -------------------------------------------------------------------------------- /lib/lvgl/tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/config.yml -------------------------------------------------------------------------------- /lib/lvgl/tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/main.py -------------------------------------------------------------------------------- /lib/lvgl/tests/ref_imgs/dropdown_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/ref_imgs/dropdown_1.png -------------------------------------------------------------------------------- /lib/lvgl/tests/ref_imgs/dropdown_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/ref_imgs/dropdown_2.png -------------------------------------------------------------------------------- /lib/lvgl/tests/ref_imgs/scr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/ref_imgs/scr1.png -------------------------------------------------------------------------------- /lib/lvgl/tests/ref_imgs/table_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/ref_imgs/table_1.png -------------------------------------------------------------------------------- /lib/lvgl/tests/src/lv_test_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/lv_test_conf.h -------------------------------------------------------------------------------- /lib/lvgl/tests/src/lv_test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/lv_test_helpers.h -------------------------------------------------------------------------------- /lib/lvgl/tests/src/lv_test_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/lv_test_indev.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/lv_test_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/lv_test_indev.h -------------------------------------------------------------------------------- /lib/lvgl/tests/src/lv_test_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/lv_test_init.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/lv_test_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/lv_test_init.h -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_cases/test_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_cases/test_arc.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_cases/test_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_cases/test_bar.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_cases/test_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_cases/test_fs.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_cases/test_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_cases/test_line.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_cases/test_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_cases/test_txt.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_fonts/font_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_fonts/font_1.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_fonts/font_1.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_fonts/font_1.fnt -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_fonts/font_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_fonts/font_2.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_fonts/font_2.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_fonts/font_2.fnt -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_fonts/font_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_fonts/font_3.c -------------------------------------------------------------------------------- /lib/lvgl/tests/src/test_fonts/font_3.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/src/test_fonts/font_3.fnt -------------------------------------------------------------------------------- /lib/lvgl/tests/unity/run_test.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/unity/run_test.erb -------------------------------------------------------------------------------- /lib/lvgl/tests/unity/type_sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/unity/type_sanitizer.rb -------------------------------------------------------------------------------- /lib/lvgl/tests/unity/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/unity/unity.c -------------------------------------------------------------------------------- /lib/lvgl/tests/unity/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/unity/unity.h -------------------------------------------------------------------------------- /lib/lvgl/tests/unity/unity_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/unity/unity_internals.h -------------------------------------------------------------------------------- /lib/lvgl/tests/unity/unity_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/unity/unity_support.c -------------------------------------------------------------------------------- /lib/lvgl/tests/unity/unity_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/lib/lvgl/tests/unity/unity_support.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/platformio.ini -------------------------------------------------------------------------------- /schematic/T-QT-Pro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/schematic/T-QT-Pro.pdf -------------------------------------------------------------------------------- /schematic/T_QT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/T-QT/HEAD/schematic/T_QT.pdf --------------------------------------------------------------------------------