├── .gitignore ├── Examples ├── CYD28_BaseProject │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── CYD28_BaseProject.code-workspace │ ├── README.md │ ├── include │ │ └── README │ ├── lib │ │ ├── CYD28_Display │ │ │ └── src │ │ │ │ ├── CYD28_Display.cpp │ │ │ │ └── CYD28_Display.h │ │ ├── CYD28_LDR │ │ │ └── src │ │ │ │ └── CYD28_LDR.h │ │ ├── CYD28_RGBLED │ │ │ └── src │ │ │ │ └── CYD28_RGBled.h │ │ ├── CYD28_SD │ │ │ └── src │ │ │ │ ├── CYD28_SD.cpp │ │ │ │ └── CYD28_SD.h │ │ ├── CYD28_Touchscreen │ │ │ └── src │ │ │ │ ├── CYD28_TouchscreenR.cpp │ │ │ │ └── CYD28_TouchscreenR.h │ │ ├── CYD_Audio │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ ├── CYD_Audio.cpp │ │ │ │ ├── CYD_Audio.h │ │ │ │ ├── CYD_DSP.cpp │ │ │ │ ├── CYD_DSP.h │ │ │ │ ├── CYD_audioCustom.cpp │ │ │ │ ├── aac_decoder │ │ │ │ ├── aac_decoder.cpp │ │ │ │ └── aac_decoder.h │ │ │ │ ├── flac_decoder │ │ │ │ ├── flac_decoder.cpp │ │ │ │ └── flac_decoder.h │ │ │ │ ├── mp3_decoder │ │ │ │ ├── mp3_decoder.cpp │ │ │ │ └── mp3_decoder.h │ │ │ │ ├── opus_decoder │ │ │ │ ├── celt.cpp │ │ │ │ ├── celt.h │ │ │ │ ├── opus_decoder.cpp │ │ │ │ └── opus_decoder.h │ │ │ │ └── vorbis_decoder │ │ │ │ ├── lookup.h │ │ │ │ ├── vorbis_decoder.cpp │ │ │ │ └── vorbis_decoder.h │ │ ├── README │ │ ├── SimpleCLI │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── BoundlessCommand │ │ │ │ │ └── BoundlessCommand.ino │ │ │ │ ├── ESP8266WebCLI │ │ │ │ │ └── ESP8266WebCLI.ino │ │ │ │ ├── HelpCommand │ │ │ │ │ └── HelpCommand.ino │ │ │ │ ├── Ping │ │ │ │ │ └── Ping.ino │ │ │ │ ├── PingWithArguments │ │ │ │ │ └── PingWithArguments.ino │ │ │ │ ├── PingWithCallbacks │ │ │ │ │ └── PingWithCallbacks.ino │ │ │ │ ├── PingWithTemplates │ │ │ │ │ └── PingWithTemplates.ino │ │ │ │ ├── SingleArgumentCommand │ │ │ │ │ └── SingleArgumentCommand.ino │ │ │ │ └── VideoExample │ │ │ │ │ └── VideoExample.ino │ │ │ ├── img │ │ │ │ ├── cowsay.gif │ │ │ │ ├── ping.gif │ │ │ │ └── simplecli.gif │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── Argument.cpp │ │ │ │ ├── Argument.h │ │ │ │ ├── Command.cpp │ │ │ │ ├── Command.h │ │ │ │ ├── CommandError.cpp │ │ │ │ ├── CommandError.h │ │ │ │ ├── SimpleCLI.cpp │ │ │ │ ├── SimpleCLI.h │ │ │ │ ├── StringCLI.h │ │ │ │ └── c │ │ │ │ ├── arg.c │ │ │ │ ├── arg.h │ │ │ │ ├── arg_types.h │ │ │ │ ├── cmd.c │ │ │ │ ├── cmd.h │ │ │ │ ├── cmd_error.c │ │ │ │ ├── cmd_error.h │ │ │ │ ├── cmd_error_types.h │ │ │ │ ├── cmd_types.h │ │ │ │ ├── comparator.c │ │ │ │ ├── comparator.h │ │ │ │ ├── parser.c │ │ │ │ ├── parser.h │ │ │ │ └── parser_types.h │ │ ├── TFT_eSPI │ │ │ ├── .gitattributes │ │ │ ├── .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 │ │ │ │ ├── Screenshot_client │ │ │ │ │ └── Screenshot_client.pde │ │ │ │ └── bmp2array4bit │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bmp2array4bit.py │ │ │ │ │ └── star.bmp │ │ │ ├── User_Setup.h │ │ │ ├── User_Setup_Select.h │ │ │ ├── User_Setups │ │ │ │ ├── Setup100_RP2040_ILI9488_parallel.h │ │ │ │ ├── Setup101_RP2040_ILI9481_parallel.h │ │ │ │ ├── Setup102_RP2040_ILI9341_parallel.h │ │ │ │ ├── Setup103_RP2040_ILI9486_parallel.h │ │ │ │ ├── Setup104_RP2040_ST7796_parallel.h │ │ │ │ ├── Setup105_RP2040_ST7796_16bit_parallel.h │ │ │ │ ├── Setup106_RP2040_ILI9481_16bit_parallel.h │ │ │ │ ├── Setup107_RP2040_ILI9341_16bit_parallel.h │ │ │ │ ├── Setup10_RPi_touch_ILI9486.h │ │ │ │ ├── Setup11_RPi_touch_ILI9486.h │ │ │ │ ├── Setup12_M5Stack_Basic_Core.h │ │ │ │ ├── Setup135_ST7789.h │ │ │ │ ├── Setup136_LilyGo_TTV.h │ │ │ │ ├── Setup137_LilyGo_TDisplay_RP2040.h │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ └── license.txt │ │ └── lvgl │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── README_pt_BR.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_benchmark_cogwheel_rgb565a8.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 │ │ │ │ └── js │ │ │ │ │ └── custom.js │ │ │ ├── _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 │ │ │ │ │ ├── renesas.md │ │ │ │ │ ├── stm32.md │ │ │ │ │ └── tasmota-berry.md │ │ │ │ └── quick-overview.md │ │ │ ├── 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 │ │ │ │ ├── ime_pinyin.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.8.3.9.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 │ │ │ │ └── squareline │ │ │ │ │ ├── README.md │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── lv_ui_entry.c │ │ │ │ │ └── ui │ │ │ │ │ └── lvgl │ │ │ │ │ └── lvgl.h │ │ │ └── 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 │ │ │ │ │ ├── Lato-Regular.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 │ │ │ │ ├── ime │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_ime_pinyin.h │ │ │ │ │ ├── lv_example_ime_pinyin_1.c │ │ │ │ │ └── lv_example_ime_pinyin_2.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_15.c │ │ │ │ ├── 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.h │ │ │ ├── lv_conf_template.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_layer.c │ │ │ │ ├── lv_draw_layer.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_transform.c │ │ │ │ ├── lv_draw_transform.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 │ │ │ │ │ ├── lv_draw_nxp.mk │ │ │ │ │ ├── pxp │ │ │ │ │ │ ├── lv_draw_nxp_pxp.mk │ │ │ │ │ │ ├── lv_draw_pxp.c │ │ │ │ │ │ ├── lv_draw_pxp.h │ │ │ │ │ │ ├── lv_draw_pxp_blend.c │ │ │ │ │ │ ├── lv_draw_pxp_blend.h │ │ │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ │ │ └── lv_gpu_nxp_pxp_osa.h │ │ │ │ │ └── vglite │ │ │ │ │ │ ├── lv_draw_nxp_vglite.mk │ │ │ │ │ │ ├── lv_draw_vglite.c │ │ │ │ │ │ ├── lv_draw_vglite.h │ │ │ │ │ │ ├── lv_draw_vglite_arc.c │ │ │ │ │ │ ├── lv_draw_vglite_arc.h │ │ │ │ │ │ ├── lv_draw_vglite_blend.c │ │ │ │ │ │ ├── lv_draw_vglite_blend.h │ │ │ │ │ │ ├── lv_draw_vglite_line.c │ │ │ │ │ │ ├── lv_draw_vglite_line.h │ │ │ │ │ │ ├── lv_draw_vglite_rect.c │ │ │ │ │ │ ├── lv_draw_vglite_rect.h │ │ │ │ │ │ ├── lv_vglite_buf.c │ │ │ │ │ │ ├── lv_vglite_buf.h │ │ │ │ │ │ ├── lv_vglite_utils.c │ │ │ │ │ │ └── lv_vglite_utils.h │ │ │ │ ├── renesas │ │ │ │ │ ├── lv_draw_renesas.mk │ │ │ │ │ ├── lv_gpu_d2_draw_label.c │ │ │ │ │ ├── lv_gpu_d2_ra6m3.c │ │ │ │ │ └── lv_gpu_d2_ra6m3.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_layer.c │ │ │ │ │ ├── lv_draw_sdl_layer.h │ │ │ │ │ ├── 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_layer.c │ │ │ │ │ ├── lv_draw_sw_letter.c │ │ │ │ │ ├── lv_draw_sw_line.c │ │ │ │ │ ├── lv_draw_sw_polygon.c │ │ │ │ │ ├── lv_draw_sw_rect.c │ │ │ │ │ └── lv_draw_sw_transform.c │ │ │ │ └── swm341_dma2d │ │ │ │ │ ├── lv_draw_swm341_dma2d.mk │ │ │ │ │ ├── lv_gpu_swm341_dma2d.c │ │ │ │ │ └── lv_gpu_swm341_dma2d.h │ │ │ ├── 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 │ │ │ │ │ ├── ime │ │ │ │ │ │ ├── lv_ime_pinyin.c │ │ │ │ │ │ └── lv_ime_pinyin.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 │ │ │ ├── makefile │ │ │ ├── Makefile │ │ │ └── test.c │ │ │ ├── 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_mem.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 │ ├── src │ │ ├── CYD28_audio.cpp │ │ ├── CYD28_audio.h │ │ ├── console.cpp │ │ ├── console.h │ │ ├── fonts │ │ │ ├── UbuntuCond11.c │ │ │ ├── UbuntuCond14.c │ │ │ └── UbuntuCond36.c │ │ ├── gui.cpp │ │ ├── gui.h │ │ └── main.cpp │ └── test │ │ └── README └── Samples-SDcard │ ├── guitar.mp3 │ ├── iw.mp3 │ └── ninja.mp3 ├── LICENSE ├── Pics ├── CYD28_PCM5102A.jpg ├── CYD28_PCM5102A_installed.jpg ├── CYDAudio_Fade.png ├── CYD_Audio2_0.gif ├── CYD_AudioDACloading.gif ├── CYD_Audio_HWmod1.jpg ├── CYD_BaseProj_TabAudio.jpg ├── CYD_BaseProj_TabLDR.jpg ├── CYD_BaseProj_TabRGB.jpg ├── CYD_BaseProj_TabSD.jpg ├── CYD_BaseProj_TabSYS.jpg ├── cyd_3V3cap.jpg ├── cyd_CurrentDraw.gif ├── cyd_CurrentDraw_220uF.png ├── cyd_PSRAM_mod.jpg ├── cyd_gpio21_mod.jpg ├── cyd_ldr_mod.jpg ├── cyd_pinmapping.gif ├── ldr_mod.jpg ├── ldr_mod_rngAfter.jpg └── ldr_mod_rngPre.jpg ├── PinMapping.ods └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/.gitignore -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/.vscode/extensions.json -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/CYD28_BaseProject.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/CYD28_BaseProject.code-workspace -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/include/README -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD28_Display/src/CYD28_Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD28_Display/src/CYD28_Display.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD28_Display/src/CYD28_Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD28_Display/src/CYD28_Display.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD28_LDR/src/CYD28_LDR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD28_LDR/src/CYD28_LDR.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD28_RGBLED/src/CYD28_RGBled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD28_RGBLED/src/CYD28_RGBled.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD28_SD/src/CYD28_SD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD28_SD/src/CYD28_SD.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD28_SD/src/CYD28_SD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD28_SD/src/CYD28_SD.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/keywords.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/library.json -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/readme.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/src/CYD_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/src/CYD_Audio.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/src/CYD_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/src/CYD_Audio.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/src/CYD_DSP.cpp: -------------------------------------------------------------------------------- 1 | #include "CYD_DSP.h" 2 | 3 | // for future add ons -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/src/CYD_DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/src/CYD_DSP.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/src/CYD_audioCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/src/CYD_audioCustom.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/src/opus_decoder/celt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/src/opus_decoder/celt.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/src/opus_decoder/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/src/opus_decoder/celt.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/CYD_Audio/src/vorbis_decoder/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/CYD_Audio/src/vorbis_decoder/lookup.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/README -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/LICENSE -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/examples/Ping/Ping.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/examples/Ping/Ping.ino -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/img/cowsay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/img/cowsay.gif -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/img/ping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/img/ping.gif -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/img/simplecli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/img/simplecli.gif -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/keywords.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/library.json -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/library.properties -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/Argument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/Argument.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/Argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/Argument.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/Command.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/Command.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/CommandError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/CommandError.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/CommandError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/CommandError.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/SimpleCLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/SimpleCLI.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/SimpleCLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/SimpleCLI.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/StringCLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/StringCLI.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/arg.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/arg.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/arg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/arg_types.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd_error.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd_error.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd_error_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd_error_types.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/cmd_types.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/comparator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/comparator.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/comparator.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/parser.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/parser.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/parser_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/SimpleCLI/src/c/parser_types.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Button.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Button.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Smooth_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Smooth_font.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Smooth_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Smooth_font.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Sprite.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Sprite.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Touch.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Extensions/Touch.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font32rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font32rle.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font32rle.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font64rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font64rle.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font64rle.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font72rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font72rle.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font72rle.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font72x53rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font72x53rle.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font72x53rle.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font7srle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font7srle.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/Font7srle.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/license.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/GFXFF/print.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Fonts/glcdfont.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Kconfig -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/pio_SPI.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Processors/pio_SPI.pio.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9488_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9488_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/R61581_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/R61581_Rotation.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/RM68120_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/RM68120_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/RM68140_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/RM68140_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/SSD1351_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/SSD1351_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/SSD1963_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/SSD1963_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7735_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7735_Rotation.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7789_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7789_Rotation.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7796_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_Drivers/ST7796_Rotation.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_config.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Tools/bmp2array4bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Tools/bmp2array4bit/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setup.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setup_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setup_Select.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup135_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup135_ST7789.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup15_HX8357D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup15_HX8357D.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup200_GC9A01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup200_GC9A01.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup203_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup203_ST7789.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup20_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup20_ILI9488.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup21_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup21_ILI9488.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup22_TTGO_T4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup22_TTGO_T4.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup23_TTGO_TM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup23_TTGO_TM.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/SetupX_Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/User_Setups/SetupX_Template.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/docs/PlatformIO/rp2040.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/docs/PlatformIO/rp2040.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/library.json -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/library.properties -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/Kconfig -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/README_pt_BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/README_pt_BR.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/README_zh.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/SConscript -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/component.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/benchmark/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/benchmark/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/benchmark/screenshot1.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/benchmark/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/benchmark/screenshot2.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/keypad_encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/keypad_encoder/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/lv_demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/lv_demos.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/lv_demos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/lv_demos.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/assets/spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/assets/spectrum.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/assets/spectrum_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/assets/spectrum_1.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/assets/spectrum_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/assets/spectrum_2.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/assets/spectrum_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/assets/spectrum_3.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music_list.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music_list.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music_main.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/lv_demo_music_main.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/music/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/music/screenshot1.gif -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/stress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/stress/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/stress/lv_demo_stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/stress/lv_demo_stress.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/stress/lv_demo_stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/stress/lv_demo_stress.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/stress/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/stress/screenshot1.gif -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/stress/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/stress/screenshot1.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/assets/avatar.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/assets/clothes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/assets/clothes.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/lv_demo_widgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/lv_demo_widgets.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/lv_demo_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/lv_demo_widgets.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/screenshot1.gif -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/demos/widgets/screenshot1.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/CHANGELOG.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/ROADMAP.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_ext/lv_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_ext/lv_example.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_static/css/custom.css -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_1.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_2.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_3.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_4.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_5.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_static/img/home_6.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_static/js/custom.js -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_templates/layout.html -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/_templates/page.html -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/build.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/conf.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/example_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/example_list.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/favicon.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/get-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/get-started/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/get-started/os/freertos.md: -------------------------------------------------------------------------------- 1 | # FreeRTOS 2 | 3 | TODO -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/get-started/os/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/get-started/os/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/get-started/os/nuttx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/get-started/os/nuttx.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/get-started/os/zephyr.md: -------------------------------------------------------------------------------- 1 | # Zephyr 2 | 3 | TODO -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/get-started/platforms/stm32.md: -------------------------------------------------------------------------------- 1 | 2 | # STM32 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/intro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/intro/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/layouts/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/layouts/flex.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/layouts/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/layouts/grid.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/layouts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/layouts/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/bmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/bmp.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/ffmpeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/ffmpeg.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/freetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/freetype.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/fsdrv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/fsdrv.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/gif.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/png.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/png.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/qrcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/qrcode.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/rlottie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/rlottie.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/libs/sjpg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/libs/sjpg.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/logo_lvgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/logo_lvgl.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/align.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/anim-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/anim-timeline.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/bidi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/bidi.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/boxmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/boxmodel.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/btn_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/btn_example.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/codeblocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/codeblocks.jpg -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/eclipse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/eclipse.jpg -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/layers.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/par_child1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/par_child1.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/par_child2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/par_child2.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/par_child3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/par_child3.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/platformio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/platformio.jpg -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/qtcreator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/qtcreator.jpg -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/symbols.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/sys.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/misc/visualstudio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/misc/visualstudio.jpg -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/others/fragment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/others/fragment.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/others/gridnav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/others/gridnav.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/others/ime_pinyin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/others/ime_pinyin.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/others/imgfont.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/others/imgfont.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/others/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/others/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/others/monkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/others/monkey.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/others/msg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/others/msg.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/others/snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/others/snapshot.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/animation.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/color.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/coords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/coords.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/display.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/drawing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/drawing.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/event.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/file-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/file-system.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/font.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/image.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/indev.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/layer.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/new_widget.md: -------------------------------------------------------------------------------- 1 | 2 | # New widget 3 | 4 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/object.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/renderers/dma2d.md: -------------------------------------------------------------------------------- 1 | # DMA2D GPU 2 | 3 | TODO 4 | 5 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/renderers/pxp-vglite.md: -------------------------------------------------------------------------------- 1 | # NXP PXP and VGLite GPU 2 | 3 | TODO 4 | 5 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/renderers/sdl.md: -------------------------------------------------------------------------------- 1 | # SDL renderer 2 | 3 | TODO 4 | 5 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/renderers/sw.md: -------------------------------------------------------------------------------- 1 | # Software renderer 2 | 3 | TODO 4 | 5 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/scroll.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/style-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/style-props.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/style.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/overview/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/overview/timer.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/display.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/gpu.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/indev.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/log.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/os.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/project.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/sleep.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/tick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/tick.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/porting/timer-handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/porting/timer-handler.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/requirements.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/arc.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/bar.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/btn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/btn.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/btnmatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/btnmatrix.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/canvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/canvas.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/checkbox.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/dropdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/dropdown.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/img.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/img.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/label.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/line.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/roller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/roller.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/slider.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/switch.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/table.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/textarea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/core/textarea.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/animimg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/animimg.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/calendar.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/chart.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/imgbtn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/imgbtn.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/keyboard.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/led.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/led.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/list.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/menu.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/meter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/meter.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/msgbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/msgbox.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/span.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/spinbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/spinbox.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/spinner.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/tabview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/tabview.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/tileview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/tileview.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/extra/win.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/index.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/docs/widgets/obj.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/env_support/cmake/custom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/env_support/cmake/custom.cmake -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/env_support/cmake/esp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/env_support/cmake/esp.cmake -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/env_support/cmake/zephyr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/env_support/cmake/zephyr.cmake -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/env_support/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/anim/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/anim/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg001.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg001.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg002.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg002.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg003.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/animimg003.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/caret_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/caret_down.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/emoji/F600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/emoji/F600.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/img_hand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/img_hand.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/img_star.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/img_star.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/img_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/img_star.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/img_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/img_strip.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/imgbtn_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/imgbtn_left.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/imgbtn_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/imgbtn_mid.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/imgbtn_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/imgbtn_mid.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/assets/imgbtn_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/assets/imgbtn_right.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/event/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/event/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/get_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/get_started/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/header.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/libs/bmp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/libs/bmp/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/libs/ffmpeg/birds.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/libs/ffmpeg/birds.mp4 -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/libs/ffmpeg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/libs/ffmpeg/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/libs/gif/bulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/libs/gif/bulb.gif -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/libs/gif/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/libs/gif/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/libs/png/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/libs/png/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/libs/png/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/libs/png/wink.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/libs/qrcode/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/libs/qrcode/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/libs/sjpg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/libs/sjpg/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/lv_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/lv_examples.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/lv_examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/lv_examples.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/others/ime/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/others/ime/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/others/msg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/others/msg/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/scroll/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/scroll/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/styles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/styles/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/test_ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/test_ex.sh -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/arc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/arc/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/bar/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/bar/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/bar/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/bar/test.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/btn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/btn/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/img/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/img/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/led/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/led/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/list/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/list/test.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/obj/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/obj/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/win/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/examples/widgets/win/index.rst -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/idf_component.yml -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/library.json -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/library.properties -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/lv_conf.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/lvgl.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/lvgl.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | CHANGELOG_LAST.md 2 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/build_html_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/build_html_examples.sh -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/changelog-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/changelog-template.hbs -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/changelog_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/changelog_gen.sh -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/code-format.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/code-format.cfg -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/code-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/code-format.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/cppcheck_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/cppcheck_run.sh -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/filetohex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/filetohex.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/find_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/find_version.sh -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/genexamplelist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/genexamplelist.sh -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/infer_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/infer_run.sh -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/jpg_to_sjpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/jpg_to_sjpg.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/release/com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/release/com.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/release/commits.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/release/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/release/patch.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/release/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/release/release.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/scripts/style_api_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/scripts/style_api_gen.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_core.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_event.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_event.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_group.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_group.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_indev.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_indev.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_indev_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_indev_scroll.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_indev_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_indev_scroll.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_class.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_class.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_draw.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_draw.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_pos.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_pos.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_scroll.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_scroll.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_style.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_style.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_style_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_style_gen.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_style_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_style_gen.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_tree.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_obj_tree.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_theme.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/core/lv_theme.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/arm2d/lv_gpu_arm2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/arm2d/lv_gpu_arm2d.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/arm2d/lv_gpu_arm2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/arm2d/lv_gpu_arm2d.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_arc.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_arc.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_img.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_img.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_label.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_label.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_layer.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_layer.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_line.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_line.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_mask.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_mask.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_rect.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_rect.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_transform.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_transform.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_triangle.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_draw_triangle.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_buf.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_buf.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_cache.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_cache.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_decoder.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/lv_img_decoder.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/nxp/lv_draw_nxp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/nxp/lv_draw_nxp.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/nxp/pxp/lv_draw_pxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/nxp/pxp/lv_draw_pxp.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/nxp/pxp/lv_draw_pxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/nxp/pxp/lv_draw_pxp.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl_arc.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl_bg.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl_img.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sdl/lv_draw_sdl_img.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_arc.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_blend.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_blend.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_img.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_layer.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_line.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/draw/sw/lv_draw_sw_rect.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/layouts/lv_layouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/layouts/lv_layouts.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/bmp/lv_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/bmp/lv_bmp.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/bmp/lv_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/bmp/lv_bmp.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/gif/gifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/gif/gifdec.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/gif/gifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/gif/gifdec.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/gif/lv_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/gif/lv_gif.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/gif/lv_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/gif/lv_gif.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/lv_libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/lv_libs.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/png/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/png/lodepng.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/png/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/png/lodepng.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/png/lv_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/png/lv_png.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/png/lv_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/png/lv_png.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/lv_sjpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/lv_sjpg.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/lv_sjpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/lv_sjpg.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/tjpgd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/tjpgd.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/tjpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/tjpgd.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/tjpgdcnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/libs/sjpg/tjpgdcnf.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/lv_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/lv_extra.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/lv_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/lv_extra.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/lv_extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/lv_extra.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/others/fragment/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/others/lv_others.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/others/lv_others.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/others/msg/lv_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/others/msg/lv_msg.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/others/msg/lv_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/others/msg/lv_msg.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/themes/lv_themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/themes/lv_themes.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/led/lv_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/led/lv_led.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/led/lv_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/led/lv_led.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/lv_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/lv_widgets.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/win/lv_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/win/lv_win.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/win/lv_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/extra/widgets/win/lv_win.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/korean.ttf -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_fmt_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_fmt_txt.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_fmt_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_fmt_txt.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_loader.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_loader.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_unscii_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_unscii_16.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_unscii_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_font_unscii_8.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_symbol_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/font/lv_symbol_def.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_disp.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_disp.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_indev.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_indev.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_tick.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/hal/lv_hal_tick.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_anim_timeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_anim_timeline.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_anim_timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_anim_timeline.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_assert.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_async.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_async.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_color.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_color.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_lru.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_lru.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_misc.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_printf.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_printf.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_style.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_style.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_style_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_style_gen.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_style_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_style_gen.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_templ.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_templ.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_timer.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_timer.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_txt_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_txt_ap.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_txt_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_txt_ap.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_types.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_utils.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/misc/lv_utils.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_arc.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_arc.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_bar.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_bar.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_btn.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_btn.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_btnmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_btnmatrix.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_btnmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_btnmatrix.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_canvas.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_canvas.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_checkbox.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_checkbox.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_dropdown.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_dropdown.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_img.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_img.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_label.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_label.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_line.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_line.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_objx_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_objx_templ.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_objx_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_objx_templ.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_roller.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_roller.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_slider.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_slider.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_switch.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_switch.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_table.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_table.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_textarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_textarea.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_textarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_textarea.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_widgets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/src/widgets/lv_widgets.mk -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *_Runner.c 3 | -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/README.md -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/config.yml -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/main.py -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/makefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/makefile/Makefile -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/makefile/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/makefile/test.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/ref_imgs/dropdown_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/ref_imgs/dropdown_1.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/ref_imgs/dropdown_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/ref_imgs/dropdown_2.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/ref_imgs/scr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/ref_imgs/scr1.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/ref_imgs/table_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/ref_imgs/table_1.png -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_conf.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_helpers.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_indev.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_indev.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_init.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/lv_test_init.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/test_cases/test_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/test_cases/test_fs.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/test_fonts/font_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/test_fonts/font_1.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/test_fonts/font_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/test_fonts/font_2.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/src/test_fonts/font_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/src/test_fonts/font_3.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/unity/run_test.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/unity/run_test.erb -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/unity/type_sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/unity/type_sanitizer.rb -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity_internals.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity_support.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/lib/lvgl/tests/unity/unity_support.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/platformio.ini -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/CYD28_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/CYD28_audio.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/CYD28_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/CYD28_audio.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/console.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/console.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/fonts/UbuntuCond11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/fonts/UbuntuCond11.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/fonts/UbuntuCond14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/fonts/UbuntuCond14.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/fonts/UbuntuCond36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/fonts/UbuntuCond36.c -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/gui.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/gui.h -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/src/main.cpp -------------------------------------------------------------------------------- /Examples/CYD28_BaseProject/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/CYD28_BaseProject/test/README -------------------------------------------------------------------------------- /Examples/Samples-SDcard/guitar.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/Samples-SDcard/guitar.mp3 -------------------------------------------------------------------------------- /Examples/Samples-SDcard/iw.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/Samples-SDcard/iw.mp3 -------------------------------------------------------------------------------- /Examples/Samples-SDcard/ninja.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Examples/Samples-SDcard/ninja.mp3 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/LICENSE -------------------------------------------------------------------------------- /Pics/CYD28_PCM5102A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD28_PCM5102A.jpg -------------------------------------------------------------------------------- /Pics/CYD28_PCM5102A_installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD28_PCM5102A_installed.jpg -------------------------------------------------------------------------------- /Pics/CYDAudio_Fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYDAudio_Fade.png -------------------------------------------------------------------------------- /Pics/CYD_Audio2_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD_Audio2_0.gif -------------------------------------------------------------------------------- /Pics/CYD_AudioDACloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD_AudioDACloading.gif -------------------------------------------------------------------------------- /Pics/CYD_Audio_HWmod1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD_Audio_HWmod1.jpg -------------------------------------------------------------------------------- /Pics/CYD_BaseProj_TabAudio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD_BaseProj_TabAudio.jpg -------------------------------------------------------------------------------- /Pics/CYD_BaseProj_TabLDR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD_BaseProj_TabLDR.jpg -------------------------------------------------------------------------------- /Pics/CYD_BaseProj_TabRGB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD_BaseProj_TabRGB.jpg -------------------------------------------------------------------------------- /Pics/CYD_BaseProj_TabSD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD_BaseProj_TabSD.jpg -------------------------------------------------------------------------------- /Pics/CYD_BaseProj_TabSYS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/CYD_BaseProj_TabSYS.jpg -------------------------------------------------------------------------------- /Pics/cyd_3V3cap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/cyd_3V3cap.jpg -------------------------------------------------------------------------------- /Pics/cyd_CurrentDraw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/cyd_CurrentDraw.gif -------------------------------------------------------------------------------- /Pics/cyd_CurrentDraw_220uF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/cyd_CurrentDraw_220uF.png -------------------------------------------------------------------------------- /Pics/cyd_PSRAM_mod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/cyd_PSRAM_mod.jpg -------------------------------------------------------------------------------- /Pics/cyd_gpio21_mod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/cyd_gpio21_mod.jpg -------------------------------------------------------------------------------- /Pics/cyd_ldr_mod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/cyd_ldr_mod.jpg -------------------------------------------------------------------------------- /Pics/cyd_pinmapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/cyd_pinmapping.gif -------------------------------------------------------------------------------- /Pics/ldr_mod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/ldr_mod.jpg -------------------------------------------------------------------------------- /Pics/ldr_mod_rngAfter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/ldr_mod_rngAfter.jpg -------------------------------------------------------------------------------- /Pics/ldr_mod_rngPre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/Pics/ldr_mod_rngPre.jpg -------------------------------------------------------------------------------- /PinMapping.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/PinMapping.ods -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexeguitar/ESP32_TFT_PIO/HEAD/README.md --------------------------------------------------------------------------------