├── 1.Hardware ├── Peak-T2.0_Gerber_PCB2_20220330120510.zip └── README.md ├── 2.Firmware └── PlatformIO │ ├── Peak-T2.0_Arduino-fw │ ├── .gitignore │ ├── .pio │ │ └── libdeps │ │ │ └── pico32 │ │ │ ├── TFT_eSPI │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── 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 │ │ │ ├── Processors │ │ │ │ ├── TFT_eSPI_ESP32.c │ │ │ │ ├── TFT_eSPI_ESP32.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_8bit_parallel.pio │ │ │ │ ├── pio_8bit_parallel.pio.h │ │ │ │ ├── pio_SPI.pio │ │ │ │ └── pio_SPI.pio.h │ │ │ ├── README.md │ │ │ ├── README.txt │ │ │ ├── TFT_Drivers │ │ │ │ ├── EPD_Defines.h │ │ │ │ ├── GC9A01_Defines.h │ │ │ │ ├── GC9A01_Init.h │ │ │ │ ├── GC9A01_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 │ │ │ │ ├── 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_eSPI.cpp │ │ │ ├── TFT_eSPI.h │ │ │ ├── Tools │ │ │ │ ├── Create_Smooth_Font │ │ │ │ │ └── Create_font │ │ │ │ │ │ ├── Create_font.pde │ │ │ │ │ │ ├── FontFiles │ │ │ │ │ │ └── Final-Frontier28.vlw │ │ │ │ │ │ └── data │ │ │ │ │ │ └── Final-Frontier.ttf │ │ │ │ ├── Images │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bmp2array4bit.py │ │ │ │ │ └── star.bmp │ │ │ │ ├── PlatformIO │ │ │ │ │ └── Configuring options.txt │ │ │ │ └── Screenshot_client │ │ │ │ │ └── Screenshot_client.pde │ │ │ ├── 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 │ │ │ │ ├── Setup10_RPi_touch_ILI9486.h │ │ │ │ ├── Setup11_RPi_touch_ILI9486.h │ │ │ │ ├── Setup12_M5Stack_Basic_Core.h │ │ │ │ ├── Setup135_ST7789.h │ │ │ │ ├── Setup136_LilyGo_TTV.h │ │ │ │ ├── Setup137_LilyGo_TDisplay_RP2040.h │ │ │ │ ├── Setup13_ILI9481_Parallel.h │ │ │ │ ├── Setup14_ILI9341_Parallel.h │ │ │ │ ├── Setup15_HX8357D.h │ │ │ │ ├── Setup16_ILI9488_Parallel.h │ │ │ │ ├── Setup17_ePaper.h │ │ │ │ ├── Setup18_ST7789.h │ │ │ │ ├── Setup19_RM68140_Parallel.h │ │ │ │ ├── Setup1_ILI9341.h │ │ │ │ ├── Setup200_GC9A01.h │ │ │ │ ├── Setup201_WT32_SC01.h │ │ │ │ ├── Setup202_SSD1351_128.h │ │ │ │ ├── Setup20_ILI9488.h │ │ │ │ ├── Setup21_ILI9488.h │ │ │ │ ├── Setup22_TTGO_T4.h │ │ │ │ ├── Setup22_TTGO_T4_v1.3.h │ │ │ │ ├── Setup23_TTGO_TM.h │ │ │ │ ├── Setup24_ST7789.h │ │ │ │ ├── Setup25_TTGO_T_Display.h │ │ │ │ ├── Setup26_TTGO_T_Wristband.h │ │ │ │ ├── Setup27_RPi_ST7796_ESP32.h │ │ │ │ ├── Setup28_RPi_ST7796_ESP8266.h │ │ │ │ ├── Setup29_ILI9341_STM32.h │ │ │ │ ├── Setup2_ST7735.h │ │ │ │ ├── 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 │ │ │ │ ├── Setup43_ST7735.h │ │ │ │ ├── Setup44_TTGO_CameraPlus.h │ │ │ │ ├── Setup45_TTGO_T_Watch.h │ │ │ │ ├── Setup46_GC9A01_ESP32.h │ │ │ │ ├── Setup47_ST7735.h │ │ │ │ ├── Setup4_S6D02A1.h │ │ │ │ ├── Setup50_SSD1963_Parallel.h │ │ │ │ ├── Setup51_LilyPi_ILI9481.h │ │ │ │ ├── Setup52_LilyPi_ST7796.h │ │ │ │ ├── Setup5_RPi_ILI9486.h │ │ │ │ ├── Setup60_RP2040_ILI9341.h │ │ │ │ ├── Setup61_RP2040_ILI9341_PIO_SPI.h │ │ │ │ ├── Setup62_RP2040_Nano_Connect_ILI9341.h │ │ │ │ ├── Setup6_RPi_Wr_ILI9486.h │ │ │ │ ├── Setup70_ESP32_S2_ILI9341.h │ │ │ │ ├── Setup71_ESP32_S2_ST7789.h │ │ │ │ ├── Setup7_ST7735_128x128.h │ │ │ │ ├── Setup8_ILI9163_128x128.h │ │ │ │ ├── Setup9_ST7735_Overlap.h │ │ │ │ ├── SetupX_Template.h │ │ │ │ └── User_Custom_Fonts.h │ │ │ ├── examples │ │ │ │ ├── 160 x 128 │ │ │ │ │ ├── Arduino_Life │ │ │ │ │ │ └── Arduino_Life.ino │ │ │ │ │ ├── Pong_v3 │ │ │ │ │ │ └── Pong_v3.ino │ │ │ │ │ ├── RLE_Font_test │ │ │ │ │ │ └── RLE_Font_test.ino │ │ │ │ │ ├── TFT_Char_times │ │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ │ ├── TFT_Clock │ │ │ │ │ │ └── TFT_Clock.ino │ │ │ │ │ ├── TFT_Clock_Digital │ │ │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ │ ├── TFT_Meter_5 │ │ │ │ │ │ └── TFT_Meter_5.ino │ │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ │ ├── TFT_Rainbow │ │ │ │ │ │ └── TFT_Rainbow.ino │ │ │ │ │ ├── TFT_flash_jpg │ │ │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ │ │ ├── jpeg1.h │ │ │ │ │ │ ├── jpeg2.h │ │ │ │ │ │ ├── jpeg3.h │ │ │ │ │ │ └── jpeg4.h │ │ │ │ │ ├── TFT_graphicstest_PDQ3 │ │ │ │ │ │ └── TFT_graphicstest_PDQ3.ino │ │ │ │ │ ├── TFT_graphicstest_small │ │ │ │ │ │ └── TFT_graphicstest_small.ino │ │ │ │ │ └── UTFT_demo_fast │ │ │ │ │ │ └── UTFT_demo_fast.ino │ │ │ │ ├── 320 x 240 │ │ │ │ │ ├── All_Free_Fonts_Demo │ │ │ │ │ │ ├── All_Free_Fonts_Demo.ino │ │ │ │ │ │ └── Free_Fonts.h │ │ │ │ │ ├── Cellular_Automata │ │ │ │ │ │ └── Cellular_Automata.ino │ │ │ │ │ ├── Free_Font_Demo │ │ │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ │ │ └── Free_Fonts.h │ │ │ │ │ ├── Keypad_240x320 │ │ │ │ │ │ └── Keypad_240x320.ino │ │ │ │ │ ├── RLE_Font_test │ │ │ │ │ │ └── RLE_Font_test.ino │ │ │ │ │ ├── Read_ID_bitbash │ │ │ │ │ │ └── Read_ID_bitbash.ino │ │ │ │ │ ├── TFT_ArcFill │ │ │ │ │ │ └── TFT_ArcFill.ino │ │ │ │ │ ├── TFT_Char_times │ │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ │ ├── TFT_Clock │ │ │ │ │ │ └── TFT_Clock.ino │ │ │ │ │ ├── TFT_Clock_Digital │ │ │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ │ │ ├── TFT_Custom_Fonts │ │ │ │ │ │ └── TFT_Custom_Fonts.ino │ │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ │ ├── TFT_FillArcSpiral │ │ │ │ │ │ └── TFT_FillArcSpiral.ino │ │ │ │ │ ├── TFT_Float_Test │ │ │ │ │ │ └── TFT_Float_Test.ino │ │ │ │ │ ├── TFT_Mandlebrot │ │ │ │ │ │ └── TFT_Mandlebrot.ino │ │ │ │ │ ├── TFT_Matrix │ │ │ │ │ │ └── TFT_Matrix.ino │ │ │ │ │ ├── TFT_Meter_linear │ │ │ │ │ │ └── TFT_Meter_linear.ino │ │ │ │ │ ├── TFT_Meters │ │ │ │ │ │ └── TFT_Meters.ino │ │ │ │ │ ├── TFT_Pie_Chart │ │ │ │ │ │ └── TFT_Pie_Chart.ino │ │ │ │ │ ├── TFT_Pong │ │ │ │ │ │ └── TFT_Pong.ino │ │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ │ ├── TFT_Rainbow_one_lib │ │ │ │ │ │ └── TFT_Rainbow_one_lib.ino │ │ │ │ │ ├── TFT_Read_Reg │ │ │ │ │ │ └── TFT_Read_Reg.ino │ │ │ │ │ ├── TFT_Spiro │ │ │ │ │ │ └── TFT_Spiro.ino │ │ │ │ │ ├── TFT_Starfield │ │ │ │ │ │ └── TFT_Starfield.ino │ │ │ │ │ ├── TFT_String_Align │ │ │ │ │ │ └── TFT_String_Align.ino │ │ │ │ │ ├── TFT_Terminal │ │ │ │ │ │ └── TFT_Terminal.ino │ │ │ │ │ ├── TFT_graphicstest_PDQ │ │ │ │ │ │ └── TFT_graphicstest_PDQ.ino │ │ │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ │ │ └── UTFT_demo │ │ │ │ │ │ └── UTFT_demo.ino │ │ │ │ ├── 480 x 320 │ │ │ │ │ ├── Cellular_Automata │ │ │ │ │ │ └── Cellular_Automata.ino │ │ │ │ │ ├── Demo_3D_cube │ │ │ │ │ │ └── Demo_3D_cube.ino │ │ │ │ │ ├── Free_Font_Demo │ │ │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ │ │ └── Free_Fonts.h │ │ │ │ │ ├── Graph_2 │ │ │ │ │ │ └── Graph_2.ino │ │ │ │ │ ├── Keypad_480x320 │ │ │ │ │ │ └── Keypad_480x320.ino │ │ │ │ │ ├── TFT_Char_times │ │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ │ ├── TFT_Meter_4 │ │ │ │ │ │ └── TFT_Meter_4.ino │ │ │ │ │ ├── TFT_Meters │ │ │ │ │ │ └── TFT_Meters.ino │ │ │ │ │ ├── TFT_Padding_demo │ │ │ │ │ │ └── TFT_Padding_demo.ino │ │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ │ ├── TFT_Rainbow480 │ │ │ │ │ │ └── TFT_Rainbow480.ino │ │ │ │ │ ├── TFT_String_Align │ │ │ │ │ │ └── TFT_String_Align.ino │ │ │ │ │ ├── TFT_flash_jpg │ │ │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ │ │ ├── jpeg1.h │ │ │ │ │ │ ├── jpeg2.h │ │ │ │ │ │ ├── jpeg3.h │ │ │ │ │ │ └── jpeg4.h │ │ │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ │ │ ├── TFT_ring_meter │ │ │ │ │ │ ├── Alert.h │ │ │ │ │ │ └── TFT_ring_meter.ino │ │ │ │ │ ├── Touch_Controller_Demo │ │ │ │ │ │ └── Touch_Controller_Demo.ino │ │ │ │ │ └── UTFT_Demo_480x320 │ │ │ │ │ │ └── UTFT_Demo_480x320.ino │ │ │ │ ├── DMA test │ │ │ │ │ ├── Bouncy_Circles │ │ │ │ │ │ └── Bouncy_Circles.ino │ │ │ │ │ ├── Flash_Jpg_DMA │ │ │ │ │ │ ├── Flash_Jpg_DMA.ino │ │ │ │ │ │ └── panda.h │ │ │ │ │ ├── SpriteRotatingCube │ │ │ │ │ │ └── SpriteRotatingCube.ino │ │ │ │ │ └── boing_ball │ │ │ │ │ │ ├── boing_ball.ino │ │ │ │ │ │ └── graphic.h │ │ │ │ ├── Generic │ │ │ │ │ ├── Animated_Eyes_1 │ │ │ │ │ │ ├── Animated_Eyes_1.ino │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── catEye.h │ │ │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ │ │ ├── doeEye.h │ │ │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ │ │ ├── goatEye.h │ │ │ │ │ │ │ ├── logo.h │ │ │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ │ │ ├── newtEye.h │ │ │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ │ │ ├── owlEye.h │ │ │ │ │ │ │ └── terminatorEye.h │ │ │ │ │ │ ├── eye_functions.ino │ │ │ │ │ │ ├── user.cpp │ │ │ │ │ │ ├── user_bat.cpp │ │ │ │ │ │ └── user_xmas.cpp │ │ │ │ │ ├── Animated_Eyes_2 │ │ │ │ │ │ ├── Animated_Eyes_2.ino │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── catEye.h │ │ │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ │ │ ├── doeEye.h │ │ │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ │ │ ├── goatEye.h │ │ │ │ │ │ │ ├── logo.h │ │ │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ │ │ ├── newtEye.h │ │ │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ │ │ ├── owlEye.h │ │ │ │ │ │ │ └── terminatorEye.h │ │ │ │ │ │ ├── eye_functions.ino │ │ │ │ │ │ ├── user.cpp │ │ │ │ │ │ ├── user_bat.cpp │ │ │ │ │ │ ├── user_xmas.cpp │ │ │ │ │ │ └── wiring.ino │ │ │ │ │ ├── ESP32_SDcard_jpeg │ │ │ │ │ │ └── ESP32_SDcard_jpeg.ino │ │ │ │ │ ├── ESP8266_uncannyEyes │ │ │ │ │ │ ├── ESP8266_uncannyEyes.ino │ │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ │ ├── goatEye.h │ │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ │ └── screenshotToConsole.ino │ │ │ │ │ ├── Gradient_Fill │ │ │ │ │ │ └── Gradient_Fill.ino │ │ │ │ │ ├── Local_Custom_Fonts │ │ │ │ │ │ ├── Local_Custom_Fonts.ino │ │ │ │ │ │ └── MyFont.h │ │ │ │ │ ├── On_Off_Button │ │ │ │ │ │ └── On_Off_Button.ino │ │ │ │ │ ├── TFT_Button_Label_Datum │ │ │ │ │ │ └── TFT_Button_Label_Datum.ino │ │ │ │ │ ├── TFT_Flash_Bitmap │ │ │ │ │ │ ├── Alert.h │ │ │ │ │ │ ├── Close.h │ │ │ │ │ │ ├── Info.h │ │ │ │ │ │ └── TFT_Flash_Bitmap.ino │ │ │ │ │ ├── TFT_SPIFFS_BMP │ │ │ │ │ │ ├── BMP_functions.ino │ │ │ │ │ │ ├── TFT_SPIFFS_BMP.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── parrot.bmp │ │ │ │ │ ├── TFT_Screen_Capture │ │ │ │ │ │ ├── TFT_Screen_Capture.ino │ │ │ │ │ │ ├── processing_sketch.ino │ │ │ │ │ │ └── screenServer.ino │ │ │ │ │ ├── Touch_calibrate │ │ │ │ │ │ └── Touch_calibrate.ino │ │ │ │ │ ├── Viewport_Demo │ │ │ │ │ │ ├── Viewport_Demo.ino │ │ │ │ │ │ └── Viewport_commands.ino │ │ │ │ │ ├── Viewport_graphicstest │ │ │ │ │ │ └── Viewport_graphicstest.ino │ │ │ │ │ ├── alphaBlend_Test │ │ │ │ │ │ └── alphaBlend_Test.ino │ │ │ │ │ └── drawXBitmap │ │ │ │ │ │ ├── drawXBitmap.ino │ │ │ │ │ │ └── xbm.h │ │ │ │ ├── PNG Images │ │ │ │ │ ├── Flash_PNG │ │ │ │ │ │ ├── Flash_PNG.ino │ │ │ │ │ │ └── panda_png.h │ │ │ │ │ ├── LittleFS_PNG │ │ │ │ │ │ ├── LittleFS_PNG.ino │ │ │ │ │ │ └── PNG_FS_Support.ino │ │ │ │ │ └── LittleFS_PNG_DMA │ │ │ │ │ │ ├── LittleFS_PNG_DMA.ino │ │ │ │ │ │ └── PNG_FS_Support.ino │ │ │ │ ├── Smooth Fonts │ │ │ │ │ ├── FLASH_Array │ │ │ │ │ │ ├── Font_Demo_1_Array │ │ │ │ │ │ │ ├── Font_Demo_1_Array.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ │ │ ├── Font_Demo_2_Array │ │ │ │ │ │ │ ├── Font_Demo_2_Array.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ │ │ ├── Font_Demo_3_Array │ │ │ │ │ │ │ ├── Font_Demo_3_Array.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ │ └── NotoSansMonoSCB20.h │ │ │ │ │ │ ├── Font_Demo_4_Array │ │ │ │ │ │ │ ├── Font_Demo_4_Array.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ │ │ └── Print_Smooth_Font.ino │ │ │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ │ └── Smooth_font_gradient.ino │ │ │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ │ └── Smooth_font_reading_TFT.ino │ │ │ │ │ │ └── Unicode_test │ │ │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ │ │ ├── Latin_Hiragana_24.h │ │ │ │ │ │ │ ├── Unicode_Test_72.h │ │ │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ │ │ ├── LittleFS │ │ │ │ │ │ ├── Font_Demo_1 │ │ │ │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Font_Demo_2 │ │ │ │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Font_Demo_3 │ │ │ │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ │ │ ├── Font_Demo_4 │ │ │ │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ └── Unicode_test │ │ │ │ │ │ │ ├── LittleFS_functions.ino │ │ │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ │ │ ├── SD_Card │ │ │ │ │ │ └── ESP32_Smooth_Font_SD │ │ │ │ │ │ │ ├── ESP32_Smooth_Font_SD.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ │ └── SPIFFS │ │ │ │ │ │ ├── Font_Demo_1 │ │ │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Font_Demo_2 │ │ │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Font_Demo_3 │ │ │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ │ │ ├── Font_Demo_4 │ │ │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ └── Unicode_test │ │ │ │ │ │ ├── SPIFFS_functions.ino │ │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ │ ├── Smooth Graphics │ │ │ │ │ ├── Anti-aliased_Clock │ │ │ │ │ │ ├── Anti-aliased_Clock.ino │ │ │ │ │ │ ├── NTP_Time.h │ │ │ │ │ │ └── NotoSansBold15.h │ │ │ │ │ └── Smooth_Graphics_Demo │ │ │ │ │ │ └── Smooth_Graphics_Demo.ino │ │ │ │ ├── Sprite │ │ │ │ │ ├── Animated_dial │ │ │ │ │ │ ├── Animated_dial.ino │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ └── dial.h │ │ │ │ │ ├── One_bit_Sprite_Demo │ │ │ │ │ │ └── One_bit_Sprite_Demo.ino │ │ │ │ │ ├── One_bit_Yin_Yang │ │ │ │ │ │ └── One_bit_Yin_Yang.ino │ │ │ │ │ ├── Orrery │ │ │ │ │ │ ├── Orrery.ino │ │ │ │ │ │ ├── astronomy.c │ │ │ │ │ │ └── astronomy.h │ │ │ │ │ ├── Rotated_Sprite_1 │ │ │ │ │ │ └── Rotated_Sprite_1.ino │ │ │ │ │ ├── Rotated_Sprite_2 │ │ │ │ │ │ └── Rotated_Sprite_2.ino │ │ │ │ │ ├── Rotated_Sprite_3 │ │ │ │ │ │ └── Rotated_Sprite_3.ino │ │ │ │ │ ├── Sprite_RLE_Font_test │ │ │ │ │ │ └── Sprite_RLE_Font_test.ino │ │ │ │ │ ├── Sprite_TFT_Rainbow │ │ │ │ │ │ └── Sprite_TFT_Rainbow.ino │ │ │ │ │ ├── Sprite_draw │ │ │ │ │ │ └── Sprite_draw.ino │ │ │ │ │ ├── Sprite_draw_4bit │ │ │ │ │ │ └── Sprite_draw_4bit.ino │ │ │ │ │ ├── Sprite_image_4bit │ │ │ │ │ │ ├── Sprite_image_4bit.ino │ │ │ │ │ │ ├── sample_images.h │ │ │ │ │ │ └── starImage.cpp │ │ │ │ │ ├── Sprite_scroll │ │ │ │ │ │ └── Sprite_scroll.ino │ │ │ │ │ ├── Sprite_scroll_16bit │ │ │ │ │ │ └── Sprite_scroll_16bit.ino │ │ │ │ │ ├── Sprite_scroll_1bit │ │ │ │ │ │ └── Sprite_scroll_1bit.ino │ │ │ │ │ ├── Sprite_scroll_4bit │ │ │ │ │ │ └── Sprite_scroll_4bit.ino │ │ │ │ │ ├── Sprite_scroll_8bit │ │ │ │ │ │ └── Sprite_scroll_8bit.ino │ │ │ │ │ ├── Sprite_scroll_wrap_1bit │ │ │ │ │ │ └── Sprite_scroll_wrap_1bit.ino │ │ │ │ │ ├── Transparent_Sprite_Demo │ │ │ │ │ │ └── Transparent_Sprite_Demo.ino │ │ │ │ │ └── Transparent_Sprite_Demo_4bit │ │ │ │ │ │ └── Transparent_Sprite_Demo_4bit.ino │ │ │ │ ├── Test and diagnostics │ │ │ │ │ ├── Colour_Test │ │ │ │ │ │ └── Colour_Test.ino │ │ │ │ │ ├── Read_User_Setup │ │ │ │ │ │ └── Read_User_Setup.ino │ │ │ │ │ ├── TFT_ReadWrite_Test │ │ │ │ │ │ └── TFT_ReadWrite_Test.ino │ │ │ │ │ └── Test_Touch_Controller │ │ │ │ │ │ └── Test_Touch_Controller.ino │ │ │ │ └── ePaper │ │ │ │ │ └── Floyd_Steinberg │ │ │ │ │ ├── EPD_Support.h │ │ │ │ │ ├── Floyd_Steinberg.ino │ │ │ │ │ ├── Floyd_Steinberg_BMP.ino │ │ │ │ │ ├── SPIFFS.ino │ │ │ │ │ └── data │ │ │ │ │ ├── TestCard.bmp │ │ │ │ │ └── Tiger.bmp │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ └── license.txt │ │ │ ├── TinyGPSPlus │ │ │ ├── .piopm │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── BasicExample │ │ │ │ │ └── BasicExample.ino │ │ │ │ ├── DeviceExample │ │ │ │ │ └── DeviceExample.ino │ │ │ │ ├── FullExample │ │ │ │ │ └── FullExample.ino │ │ │ │ ├── KitchenSink │ │ │ │ │ └── KitchenSink.ino │ │ │ │ ├── SatElevTracker │ │ │ │ │ ├── SatElevTracker.ino │ │ │ │ │ └── sample_satellite_elevation_log.txt │ │ │ │ ├── SatelliteTracker │ │ │ │ │ └── SatelliteTracker.ino │ │ │ │ └── UsingCustomFields │ │ │ │ │ └── UsingCustomFields.ino │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── TinyGPS++.cpp │ │ │ │ ├── TinyGPS++.h │ │ │ │ └── TinyGPSPlus.h │ │ │ ├── lv_conf.h │ │ │ ├── lv_examples │ │ │ ├── .github │ │ │ │ ├── auto-comment.yml │ │ │ │ └── stale.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── library.properties │ │ │ ├── lv_demo.h │ │ │ ├── lv_demo.mk │ │ │ ├── lv_demo_conf.h │ │ │ ├── lv_demo_conf_template.h │ │ │ ├── scripts │ │ │ │ ├── build_all_examples.sh │ │ │ │ ├── examples.txt │ │ │ │ └── genexamplestxt.sh │ │ │ └── src │ │ │ │ ├── header.py │ │ │ │ ├── lv_demo.h │ │ │ │ ├── lv_demo_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 │ │ │ │ │ ├── lv_font_montserrat_12_compr_az.c │ │ │ │ │ ├── lv_font_montserrat_16_compr_az.c │ │ │ │ │ └── lv_font_montserrat_28_compr_az.c │ │ │ │ ├── lv_demo_benchmark.c │ │ │ │ └── lv_demo_benchmark.h │ │ │ │ ├── lv_demo_keypad_encoder │ │ │ │ ├── README.md │ │ │ │ ├── lv_demo_keypad_encoder.c │ │ │ │ └── lv_demo_keypad_encoder.h │ │ │ │ ├── lv_demo_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 │ │ │ │ ├── lv_demo_stress │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── lv_font_montserrat_12_compr_az.c │ │ │ │ │ ├── lv_font_montserrat_16_compr_az.c │ │ │ │ │ └── lv_font_montserrat_28_compr_az.c │ │ │ │ ├── lv_demo_stress.c │ │ │ │ └── lv_demo_stress.h │ │ │ │ └── lv_demo_widgets │ │ │ │ ├── assets │ │ │ │ ├── img_clothes.c │ │ │ │ ├── img_demo_widgets_avatar.c │ │ │ │ └── img_lvgl_logo.c │ │ │ │ ├── lv_demo_widgets.c │ │ │ │ ├── lv_demo_widgets.h │ │ │ │ └── lv_demo_widgets.py │ │ │ └── lvgl │ │ │ ├── .codecov.yml │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ ├── config.yml │ │ │ │ └── dev-discussion.md │ │ │ ├── auto-comment.yml │ │ │ ├── pull_request_template.md │ │ │ └── workflows │ │ │ │ ├── build_micropython.yml │ │ │ │ ├── ccpp.yml │ │ │ │ ├── check_conf.yml │ │ │ │ ├── close_old_issues.yml │ │ │ │ ├── compile_docs.yml │ │ │ │ ├── esp_upload_component.yml │ │ │ │ ├── main.yml │ │ │ │ └── release.yml │ │ │ ├── .gitignore │ │ │ ├── .piopm │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── SConscript │ │ │ ├── component.mk │ │ │ ├── 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 │ │ │ │ ├── animimg002.c │ │ │ │ ├── animimg003.c │ │ │ │ ├── font │ │ │ │ │ ├── lv_font_simsun_16_cjk.fnt │ │ │ │ │ ├── montserrat-16.fnt │ │ │ │ │ └── montserrat-22.fnt │ │ │ │ ├── img_caret_down.c │ │ │ │ ├── img_cogwheel_alpha16.c │ │ │ │ ├── img_cogwheel_argb.c │ │ │ │ ├── img_cogwheel_chroma_keyed.c │ │ │ │ ├── img_cogwheel_indexed16.c │ │ │ │ ├── img_cogwheel_rgb.c │ │ │ │ ├── img_hand.c │ │ │ │ ├── img_skew_strip.c │ │ │ │ ├── img_skew_strip_80x20_argb8888.fnt │ │ │ │ ├── img_star.c │ │ │ │ ├── imgbtn_left.c │ │ │ │ ├── imgbtn_mid.c │ │ │ │ └── imgbtn_right.c │ │ │ ├── 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 │ │ │ ├── examples.mk │ │ │ ├── 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 │ │ │ │ ├── freetype │ │ │ │ │ ├── arial.ttf │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_freetype.h │ │ │ │ │ └── lv_example_freetype_1.c │ │ │ │ ├── gif │ │ │ │ │ ├── img_bulb_gif.c │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_gif.h │ │ │ │ │ └── lv_example_gif_1.c │ │ │ │ ├── lv_example_libs.h │ │ │ │ ├── png │ │ │ │ │ ├── img_wing_png.c │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_png.h │ │ │ │ │ └── lv_example_png_1.c │ │ │ │ ├── qrcode │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_qrcode.h │ │ │ │ │ └── lv_example_qrcode_1.c │ │ │ │ ├── rlottie │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_rlottie.h │ │ │ │ │ ├── lv_example_rlottie_1.c │ │ │ │ │ ├── lv_example_rlottie_2.c │ │ │ │ │ ├── lv_example_rlottie_approve.c │ │ │ │ │ └── lv_example_rlottie_approve.json │ │ │ │ └── sjpg │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_sjpg.h │ │ │ │ │ ├── lv_example_sjpg_1.c │ │ │ │ │ └── small_image.sjpg │ │ │ ├── lv_examples.h │ │ │ ├── others │ │ │ │ ├── lv_example_others.h │ │ │ │ └── snapshot │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_snapshot.h │ │ │ │ │ ├── lv_example_snapshot_1.c │ │ │ │ │ └── lv_example_snapshot_1.py │ │ │ ├── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ │ ├── scroll │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_scroll.h │ │ │ │ ├── lv_example_scroll_1.c │ │ │ │ ├── lv_example_scroll_1.py │ │ │ │ ├── lv_example_scroll_2.c │ │ │ │ ├── lv_example_scroll_2.py │ │ │ │ ├── lv_example_scroll_3.c │ │ │ │ ├── lv_example_scroll_3.py │ │ │ │ ├── lv_example_scroll_4.c │ │ │ │ ├── lv_example_scroll_4.py │ │ │ │ ├── lv_example_scroll_5.c │ │ │ │ ├── lv_example_scroll_5.py │ │ │ │ ├── lv_example_scroll_6.c │ │ │ │ └── lv_example_scroll_6.py │ │ │ ├── styles │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_style.h │ │ │ │ ├── lv_example_style_1.c │ │ │ │ ├── lv_example_style_1.py │ │ │ │ ├── lv_example_style_10.c │ │ │ │ ├── lv_example_style_10.py │ │ │ │ ├── lv_example_style_11.c │ │ │ │ ├── lv_example_style_11.py │ │ │ │ ├── lv_example_style_12.c │ │ │ │ ├── lv_example_style_12.py │ │ │ │ ├── lv_example_style_13.c │ │ │ │ ├── lv_example_style_13.py │ │ │ │ ├── lv_example_style_14.c │ │ │ │ ├── lv_example_style_14.py │ │ │ │ ├── lv_example_style_2.c │ │ │ │ ├── lv_example_style_2.py │ │ │ │ ├── lv_example_style_3.c │ │ │ │ ├── lv_example_style_3.py │ │ │ │ ├── lv_example_style_4.c │ │ │ │ ├── lv_example_style_4.py │ │ │ │ ├── lv_example_style_5.c │ │ │ │ ├── lv_example_style_5.py │ │ │ │ ├── lv_example_style_6.c │ │ │ │ ├── lv_example_style_6.py │ │ │ │ ├── lv_example_style_7.c │ │ │ │ ├── lv_example_style_7.py │ │ │ │ ├── lv_example_style_8.c │ │ │ │ ├── lv_example_style_8.py │ │ │ │ ├── lv_example_style_9.c │ │ │ │ └── lv_example_style_9.py │ │ │ ├── test_ex.sh │ │ │ └── widgets │ │ │ │ ├── animimg │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_animimg_1.c │ │ │ │ └── lv_example_animimg_1.py │ │ │ │ ├── arc │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_arc_1.c │ │ │ │ ├── lv_example_arc_1.py │ │ │ │ ├── lv_example_arc_2.c │ │ │ │ └── lv_example_arc_2.py │ │ │ │ ├── bar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_bar_1.c │ │ │ │ ├── lv_example_bar_1.py │ │ │ │ ├── lv_example_bar_2.c │ │ │ │ ├── lv_example_bar_2.py │ │ │ │ ├── lv_example_bar_3.c │ │ │ │ ├── lv_example_bar_3.py │ │ │ │ ├── lv_example_bar_4.c │ │ │ │ ├── lv_example_bar_4.py │ │ │ │ ├── lv_example_bar_5.c │ │ │ │ ├── lv_example_bar_5.py │ │ │ │ ├── lv_example_bar_6.c │ │ │ │ ├── lv_example_bar_6.py │ │ │ │ └── test.py │ │ │ │ ├── btn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btn_1.c │ │ │ │ ├── lv_example_btn_1.py │ │ │ │ ├── lv_example_btn_2.c │ │ │ │ ├── lv_example_btn_2.py │ │ │ │ ├── lv_example_btn_3.c │ │ │ │ └── lv_example_btn_3.py │ │ │ │ ├── btnmatrix │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btnmatrix_1.c │ │ │ │ ├── lv_example_btnmatrix_1.py │ │ │ │ ├── lv_example_btnmatrix_2.c │ │ │ │ ├── lv_example_btnmatrix_2.py │ │ │ │ ├── lv_example_btnmatrix_3.c │ │ │ │ └── lv_example_btnmatrix_3.py │ │ │ │ ├── calendar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_calendar_1.c │ │ │ │ └── lv_example_calendar_1.py │ │ │ │ ├── canvas │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_canvas_1.c │ │ │ │ ├── lv_example_canvas_1.py │ │ │ │ ├── lv_example_canvas_2.c │ │ │ │ └── lv_example_canvas_2.py │ │ │ │ ├── chart │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_chart_1.c │ │ │ │ ├── lv_example_chart_1.py │ │ │ │ ├── lv_example_chart_2.c │ │ │ │ ├── lv_example_chart_2.py │ │ │ │ ├── lv_example_chart_3.c │ │ │ │ ├── lv_example_chart_3.py │ │ │ │ ├── lv_example_chart_4.c │ │ │ │ ├── lv_example_chart_4.py │ │ │ │ ├── lv_example_chart_5.c │ │ │ │ ├── lv_example_chart_5.py │ │ │ │ ├── lv_example_chart_6.c │ │ │ │ ├── lv_example_chart_6.py │ │ │ │ ├── lv_example_chart_7.c │ │ │ │ ├── lv_example_chart_7.py │ │ │ │ ├── lv_example_chart_8.c │ │ │ │ ├── lv_example_chart_8.py │ │ │ │ ├── lv_example_chart_9.c │ │ │ │ └── lv_example_chart_9.py │ │ │ │ ├── checkbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_checkbox_1.c │ │ │ │ ├── lv_example_checkbox_1.py │ │ │ │ └── lv_example_checkbox_2.c │ │ │ │ ├── colorwheel │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_colorwheel_1.c │ │ │ │ └── lv_example_colorwheel_1.py │ │ │ │ ├── dropdown │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_dropdown_1.c │ │ │ │ ├── lv_example_dropdown_1.py │ │ │ │ ├── lv_example_dropdown_2.c │ │ │ │ ├── lv_example_dropdown_2.py │ │ │ │ ├── lv_example_dropdown_3.c │ │ │ │ └── lv_example_dropdown_3.py │ │ │ │ ├── img │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_img_1.c │ │ │ │ ├── lv_example_img_1.py │ │ │ │ ├── lv_example_img_2.c │ │ │ │ ├── lv_example_img_2.py │ │ │ │ ├── lv_example_img_3.c │ │ │ │ ├── lv_example_img_3.py │ │ │ │ ├── lv_example_img_4.c │ │ │ │ └── lv_example_img_4.py │ │ │ │ ├── imgbtn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_imgbtn_1.c │ │ │ │ └── lv_example_imgbtn_1.py │ │ │ │ ├── keyboard │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_keyboard_1.c │ │ │ │ └── lv_example_keyboard_1.py │ │ │ │ ├── label │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_label_1.c │ │ │ │ ├── lv_example_label_1.py │ │ │ │ ├── lv_example_label_2.c │ │ │ │ ├── lv_example_label_2.py │ │ │ │ ├── lv_example_label_3.c │ │ │ │ ├── lv_example_label_3.py │ │ │ │ └── lv_example_label_4.c │ │ │ │ ├── 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 │ │ │ │ ├── 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_template.h │ │ │ ├── lvgl.h │ │ │ ├── lvgl.mk │ │ │ ├── rt-thread │ │ │ ├── SConscript │ │ │ ├── lv_rt_thread_conf.h │ │ │ └── lv_rt_thread_port.c │ │ │ ├── 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.sh │ │ │ ├── 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 │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_blend.c │ │ │ │ ├── lv_draw_blend.h │ │ │ │ ├── lv_draw_img.c │ │ │ │ ├── lv_draw_img.h │ │ │ │ ├── lv_draw_label.c │ │ │ │ ├── lv_draw_label.h │ │ │ │ ├── lv_draw_line.c │ │ │ │ ├── lv_draw_line.h │ │ │ │ ├── lv_draw_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ └── lv_img_decoder.h │ │ │ ├── extra │ │ │ │ ├── README.md │ │ │ │ ├── extra.mk │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ ├── others │ │ │ │ │ ├── lv_others.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 │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── gpu │ │ │ │ ├── lv_gpu.mk │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ │ ├── lv_gpu_sdl.c │ │ │ │ ├── lv_gpu_sdl.h │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ ├── lv_gpu_stm32_dma2d.h │ │ │ │ └── sdl │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lv_gpu_sdl.mk │ │ │ │ │ ├── lv_gpu_sdl_draw_arc.c │ │ │ │ │ ├── lv_gpu_sdl_draw_blend.c │ │ │ │ │ ├── lv_gpu_sdl_draw_img.c │ │ │ │ │ ├── lv_gpu_sdl_draw_label.c │ │ │ │ │ ├── lv_gpu_sdl_draw_line.c │ │ │ │ │ ├── lv_gpu_sdl_draw_rect.c │ │ │ │ │ ├── lv_gpu_sdl_lru.c │ │ │ │ │ ├── lv_gpu_sdl_lru.h │ │ │ │ │ ├── lv_gpu_sdl_mask.c │ │ │ │ │ ├── lv_gpu_sdl_mask.h │ │ │ │ │ ├── lv_gpu_sdl_stack_blur.c │ │ │ │ │ ├── lv_gpu_sdl_stack_blur.h │ │ │ │ │ ├── lv_gpu_sdl_texture_cache.c │ │ │ │ │ ├── lv_gpu_sdl_texture_cache.h │ │ │ │ │ ├── lv_gpu_sdl_utils.c │ │ │ │ │ └── lv_gpu_sdl_utils.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_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 │ │ │ ├── src │ │ │ │ ├── lv_test_conf.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_checkbox.c │ │ │ │ │ ├── test_config.c │ │ │ │ │ ├── test_dropdown.c │ │ │ │ │ ├── test_font_loader.c │ │ │ │ │ ├── test_obj_tree.c │ │ │ │ │ ├── test_style.c │ │ │ │ │ └── test_txt.c │ │ │ │ └── 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 │ │ │ └── zephyr │ │ │ └── module.yml │ ├── .vscode │ │ └── extensions.json │ ├── include │ │ └── README │ ├── lib │ │ ├── ButtonEvent │ │ │ ├── ButtonEvent.cpp │ │ │ ├── ButtonEvent.h │ │ │ └── EventType.inc │ │ ├── M5Touch │ │ │ ├── M5Touch.cpp │ │ │ ├── M5Touch.h │ │ │ ├── PointAndZone.cpp │ │ │ └── PointAndZone.h │ │ ├── MillisTaskManager │ │ │ ├── MillisTaskManager.cpp │ │ │ └── MillisTaskManager.h │ │ ├── Music │ │ │ ├── MusicCode.h │ │ │ └── ToneMap.h │ │ ├── README │ │ └── TonePlayer │ │ │ ├── TonePlayer.cpp │ │ │ └── TonePlayer.h │ ├── platformio.ini │ ├── src │ │ ├── HAL │ │ │ ├── CommonMacro.h │ │ │ ├── Config │ │ │ │ └── Config.h │ │ │ ├── HAL.cpp │ │ │ ├── HAL.h │ │ │ ├── HAL_Audio.cpp │ │ │ ├── HAL_Backlight.cpp │ │ │ ├── HAL_Buzz.cpp │ │ │ ├── HAL_Clock.cpp │ │ │ ├── HAL_Def.h │ │ │ ├── HAL_Display.cpp │ │ │ ├── HAL_Encoder.cpp │ │ │ ├── HAL_GPS.cpp │ │ │ ├── HAL_I2C_Scan.cpp │ │ │ ├── HAL_IMU.cpp │ │ │ ├── HAL_Power.cpp │ │ │ ├── HAL_SD_CARD.cpp │ │ │ └── HAL_TouchScreen.cpp │ │ ├── PeakTrack │ │ │ ├── Pages │ │ │ │ ├── Main │ │ │ │ │ ├── MainModel.cpp │ │ │ │ │ ├── MainModel.h │ │ │ │ │ ├── MainPage.cpp │ │ │ │ │ ├── MainPage.h │ │ │ │ │ ├── MainView.cpp │ │ │ │ │ ├── MainView.h │ │ │ │ │ ├── ui_helpers.c │ │ │ │ │ └── ui_helpers.h │ │ │ │ └── Pages.h │ │ │ ├── PeakTrack.cpp │ │ │ ├── PeakTrack.h │ │ │ └── Resources │ │ │ │ ├── Resources.h │ │ │ │ ├── fonts │ │ │ │ ├── ui_font_bahnschrift_13.c │ │ │ │ ├── ui_font_bahnschrift_17.c │ │ │ │ ├── ui_font_bahnschrift_32.c │ │ │ │ └── ui_font_bahnschrift_65.c │ │ │ │ └── images │ │ │ │ ├── ui_img_artdesign_bettray_png.c │ │ │ │ ├── ui_img_artdesign_locate_png.c │ │ │ │ ├── ui_img_artdesign_menu_png.c │ │ │ │ ├── ui_img_artdesign_pause_png.c │ │ │ │ ├── ui_img_artdesign_satellite_png.c │ │ │ │ └── ui_img_artdesign_start_png.c │ │ ├── Port │ │ │ ├── Display.cpp │ │ │ ├── Display.h │ │ │ └── lv_port │ │ │ │ ├── lv_port_disp.cpp │ │ │ │ └── lv_port_indev.cpp │ │ └── main.cpp │ └── test │ │ └── README │ ├── Peak_ESP32_X-Track_fw_T2.0 │ ├── .gitignore │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── launch.json │ ├── Tools │ │ └── addr2line.exe │ ├── include │ │ └── README │ ├── lib │ │ ├── ArduinoJson │ │ │ ├── ArduinoJson.h │ │ │ ├── CHANGELOG.md │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── SUPPORT.md │ │ │ ├── appveyor.yml │ │ │ ├── banner.svg │ │ │ ├── component.mk │ │ │ ├── examples │ │ │ │ ├── JsonConfigFile │ │ │ │ │ └── JsonConfigFile.ino │ │ │ │ ├── JsonFilterExample │ │ │ │ │ └── JsonFilterExample.ino │ │ │ │ ├── JsonGeneratorExample │ │ │ │ │ └── JsonGeneratorExample.ino │ │ │ │ ├── JsonHttpClient │ │ │ │ │ └── JsonHttpClient.ino │ │ │ │ ├── JsonParserExample │ │ │ │ │ └── JsonParserExample.ino │ │ │ │ ├── JsonServer │ │ │ │ │ └── JsonServer.ino │ │ │ │ ├── JsonUdpBeacon │ │ │ │ │ └── JsonUdpBeacon.ino │ │ │ │ ├── MsgPackParser │ │ │ │ │ └── MsgPackParser.ino │ │ │ │ ├── ProgmemExample │ │ │ │ │ └── ProgmemExample.ino │ │ │ │ └── StringExample │ │ │ │ │ └── StringExample.ino │ │ │ ├── extras │ │ │ │ ├── ArduinoJsonConfig.cmake.in │ │ │ │ ├── CompileOptions.cmake │ │ │ │ ├── ci │ │ │ │ │ ├── arduino.sh │ │ │ │ │ ├── particle.sh │ │ │ │ │ └── platformio.sh │ │ │ │ ├── fuzzing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── json_fuzzer.cpp │ │ │ │ │ ├── json_seed_corpus │ │ │ │ │ │ ├── Comments.json │ │ │ │ │ │ ├── EmptyArray.json │ │ │ │ │ │ ├── EmptyObject.json │ │ │ │ │ │ ├── ExcessiveNesting.json │ │ │ │ │ │ ├── IntegerOverflow.json │ │ │ │ │ │ ├── Numbers.json │ │ │ │ │ │ ├── OpenWeatherMap.json │ │ │ │ │ │ ├── Strings.json │ │ │ │ │ │ └── WeatherUnderground.json │ │ │ │ │ ├── msgpack_fuzzer.cpp │ │ │ │ │ ├── msgpack_seed_corpus │ │ │ │ │ │ ├── array16 │ │ │ │ │ │ ├── array32 │ │ │ │ │ │ ├── false │ │ │ │ │ │ ├── fixarray │ │ │ │ │ │ ├── fixint_negative │ │ │ │ │ │ ├── fixint_positive │ │ │ │ │ │ ├── fixmap │ │ │ │ │ │ ├── fixstr │ │ │ │ │ │ ├── float32 │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── int16 │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── int64 │ │ │ │ │ │ ├── int8 │ │ │ │ │ │ ├── map16 │ │ │ │ │ │ ├── map32 │ │ │ │ │ │ ├── nil │ │ │ │ │ │ ├── str16 │ │ │ │ │ │ ├── str32 │ │ │ │ │ │ ├── str8 │ │ │ │ │ │ ├── true │ │ │ │ │ │ ├── uint16 │ │ │ │ │ │ ├── uint32 │ │ │ │ │ │ ├── uint64 │ │ │ │ │ │ └── uint8 │ │ │ │ │ └── reproducer.cpp │ │ │ │ ├── particle │ │ │ │ │ ├── project.properties │ │ │ │ │ └── src │ │ │ │ │ │ └── smocktest.ino │ │ │ │ ├── scripts │ │ │ │ │ ├── build-arduino-package.sh │ │ │ │ │ ├── build-single-header.sh │ │ │ │ │ ├── publish-particle-library.sh │ │ │ │ │ ├── publish.sh │ │ │ │ │ └── wandbox │ │ │ │ │ │ ├── JsonGeneratorExample.cpp │ │ │ │ │ │ ├── JsonParserExample.cpp │ │ │ │ │ │ ├── MsgPackParserExample.cpp │ │ │ │ │ │ └── publish.sh │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FailingBuilds │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Issue1189.cpp │ │ │ │ │ ├── Issue978.cpp │ │ │ │ │ ├── assign_char.cpp │ │ │ │ │ ├── delete_jsondocument.cpp │ │ │ │ │ ├── read_long_long.cpp │ │ │ │ │ ├── variant_as_char.cpp │ │ │ │ │ └── write_long_long.cpp │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Arduino.h │ │ │ │ │ ├── CustomReader.hpp │ │ │ │ │ ├── api │ │ │ │ │ │ ├── Print.h │ │ │ │ │ │ ├── Stream.h │ │ │ │ │ │ └── String.h │ │ │ │ │ └── progmem_emulation.hpp │ │ │ │ │ ├── IntegrationTests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gbathree.cpp │ │ │ │ │ ├── issue772.cpp │ │ │ │ │ ├── openweathermap.cpp │ │ │ │ │ └── round_trip.cpp │ │ │ │ │ ├── JsonArray │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── add.cpp │ │ │ │ │ ├── copyArray.cpp │ │ │ │ │ ├── createNested.cpp │ │ │ │ │ ├── equals.cpp │ │ │ │ │ ├── get.cpp │ │ │ │ │ ├── isNull.cpp │ │ │ │ │ ├── iterator.cpp │ │ │ │ │ ├── memoryUsage.cpp │ │ │ │ │ ├── nesting.cpp │ │ │ │ │ ├── remove.cpp │ │ │ │ │ ├── size.cpp │ │ │ │ │ ├── std_string.cpp │ │ │ │ │ ├── subscript.cpp │ │ │ │ │ └── undefined.cpp │ │ │ │ │ ├── JsonDeserializer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── DeserializationError.cpp │ │ │ │ │ ├── array.cpp │ │ │ │ │ ├── array_static.cpp │ │ │ │ │ ├── filter.cpp │ │ │ │ │ ├── incomplete_input.cpp │ │ │ │ │ ├── input_types.cpp │ │ │ │ │ ├── invalid_input.cpp │ │ │ │ │ ├── misc.cpp │ │ │ │ │ ├── nestingLimit.cpp │ │ │ │ │ ├── number.cpp │ │ │ │ │ ├── object.cpp │ │ │ │ │ ├── object_static.cpp │ │ │ │ │ └── string.cpp │ │ │ │ │ ├── JsonDocument │ │ │ │ │ ├── BasicJsonDocument.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── DynamicJsonDocument.cpp │ │ │ │ │ ├── ElementProxy.cpp │ │ │ │ │ ├── MemberProxy.cpp │ │ │ │ │ ├── StaticJsonDocument.cpp │ │ │ │ │ ├── add.cpp │ │ │ │ │ ├── compare.cpp │ │ │ │ │ ├── containsKey.cpp │ │ │ │ │ ├── createNested.cpp │ │ │ │ │ ├── isNull.cpp │ │ │ │ │ ├── nesting.cpp │ │ │ │ │ ├── overflowed.cpp │ │ │ │ │ ├── remove.cpp │ │ │ │ │ ├── shrinkToFit.cpp │ │ │ │ │ ├── size.cpp │ │ │ │ │ └── subscript.cpp │ │ │ │ │ ├── JsonObject │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── containsKey.cpp │ │ │ │ │ ├── copy.cpp │ │ │ │ │ ├── createNestedArray.cpp │ │ │ │ │ ├── createNestedObject.cpp │ │ │ │ │ ├── equals.cpp │ │ │ │ │ ├── invalid.cpp │ │ │ │ │ ├── isNull.cpp │ │ │ │ │ ├── iterator.cpp │ │ │ │ │ ├── memoryUsage.cpp │ │ │ │ │ ├── nesting.cpp │ │ │ │ │ ├── remove.cpp │ │ │ │ │ ├── size.cpp │ │ │ │ │ ├── std_string.cpp │ │ │ │ │ └── subscript.cpp │ │ │ │ │ ├── JsonSerializer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CustomWriter.cpp │ │ │ │ │ ├── JsonArray.cpp │ │ │ │ │ ├── JsonArrayPretty.cpp │ │ │ │ │ ├── JsonObject.cpp │ │ │ │ │ ├── JsonObjectPretty.cpp │ │ │ │ │ ├── JsonVariant.cpp │ │ │ │ │ ├── misc.cpp │ │ │ │ │ ├── std_stream.cpp │ │ │ │ │ └── std_string.cpp │ │ │ │ │ ├── JsonVariant │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── add.cpp │ │ │ │ │ ├── as.cpp │ │ │ │ │ ├── clear.cpp │ │ │ │ │ ├── compare.cpp │ │ │ │ │ ├── containsKey.cpp │ │ │ │ │ ├── converters.cpp │ │ │ │ │ ├── copy.cpp │ │ │ │ │ ├── createNested.cpp │ │ │ │ │ ├── is.cpp │ │ │ │ │ ├── isnull.cpp │ │ │ │ │ ├── memoryUsage.cpp │ │ │ │ │ ├── misc.cpp │ │ │ │ │ ├── nesting.cpp │ │ │ │ │ ├── or.cpp │ │ │ │ │ ├── overflow.cpp │ │ │ │ │ ├── remove.cpp │ │ │ │ │ ├── set.cpp │ │ │ │ │ ├── subscript.cpp │ │ │ │ │ ├── types.cpp │ │ │ │ │ └── undefined.cpp │ │ │ │ │ ├── MemoryPool │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── StringCopier.cpp │ │ │ │ │ ├── allocVariant.cpp │ │ │ │ │ ├── clear.cpp │ │ │ │ │ ├── saveString.cpp │ │ │ │ │ └── size.cpp │ │ │ │ │ ├── Misc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FloatParts.cpp │ │ │ │ │ ├── JsonString.cpp │ │ │ │ │ ├── Readers.cpp │ │ │ │ │ ├── StringAdapters.cpp │ │ │ │ │ ├── StringWriter.cpp │ │ │ │ │ ├── TypeTraits.cpp │ │ │ │ │ ├── Utf16.cpp │ │ │ │ │ ├── Utf8.cpp │ │ │ │ │ ├── arithmeticCompare.cpp │ │ │ │ │ ├── conflicts.cpp │ │ │ │ │ ├── custom_string.hpp │ │ │ │ │ ├── deprecated.cpp │ │ │ │ │ ├── printable.cpp │ │ │ │ │ ├── unsigned_char.cpp │ │ │ │ │ ├── version.cpp │ │ │ │ │ └── weird_strcmp.hpp │ │ │ │ │ ├── MixedConfiguration │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── cpp11.cpp │ │ │ │ │ ├── decode_unicode_0.cpp │ │ │ │ │ ├── decode_unicode_1.cpp │ │ │ │ │ ├── enable_alignment_0.cpp │ │ │ │ │ ├── enable_alignment_1.cpp │ │ │ │ │ ├── enable_comments_0.cpp │ │ │ │ │ ├── enable_comments_1.cpp │ │ │ │ │ ├── enable_infinity_0.cpp │ │ │ │ │ ├── enable_infinity_1.cpp │ │ │ │ │ ├── enable_nan_0.cpp │ │ │ │ │ ├── enable_nan_1.cpp │ │ │ │ │ ├── enable_progmem_1.cpp │ │ │ │ │ ├── enable_string_deduplication_0.cpp │ │ │ │ │ ├── enable_string_deduplication_1.cpp │ │ │ │ │ ├── use_double_0.cpp │ │ │ │ │ ├── use_double_1.cpp │ │ │ │ │ ├── use_long_long_0.cpp │ │ │ │ │ └── use_long_long_1.cpp │ │ │ │ │ ├── MsgPackDeserializer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── deserializeArray.cpp │ │ │ │ │ ├── deserializeObject.cpp │ │ │ │ │ ├── deserializeStaticVariant.cpp │ │ │ │ │ ├── deserializeVariant.cpp │ │ │ │ │ ├── doubleToFloat.cpp │ │ │ │ │ ├── filter.cpp │ │ │ │ │ ├── incompleteInput.cpp │ │ │ │ │ ├── input_types.cpp │ │ │ │ │ ├── misc.cpp │ │ │ │ │ ├── nestingLimit.cpp │ │ │ │ │ └── notSupported.cpp │ │ │ │ │ ├── MsgPackSerializer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── destination_types.cpp │ │ │ │ │ ├── measure.cpp │ │ │ │ │ ├── misc.cpp │ │ │ │ │ ├── serializeArray.cpp │ │ │ │ │ ├── serializeObject.cpp │ │ │ │ │ └── serializeVariant.cpp │ │ │ │ │ ├── Numbers │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── parseDouble.cpp │ │ │ │ │ ├── parseFloat.cpp │ │ │ │ │ ├── parseInteger.cpp │ │ │ │ │ └── parseNumber.cpp │ │ │ │ │ ├── TextFormatter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── writeFloat.cpp │ │ │ │ │ ├── writeInteger.cpp │ │ │ │ │ └── writeString.cpp │ │ │ │ │ └── catch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── catch.cpp │ │ │ │ │ └── catch.hpp │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── ArduinoJson.h │ │ │ │ ├── ArduinoJson.hpp │ │ │ │ ├── ArduinoJson │ │ │ │ ├── Array │ │ │ │ │ ├── ArrayFunctions.hpp │ │ │ │ │ ├── ArrayImpl.hpp │ │ │ │ │ ├── ArrayIterator.hpp │ │ │ │ │ ├── ArrayRef.hpp │ │ │ │ │ ├── ArrayShortcuts.hpp │ │ │ │ │ ├── ElementProxy.hpp │ │ │ │ │ └── Utilities.hpp │ │ │ │ ├── Collection │ │ │ │ │ ├── CollectionData.hpp │ │ │ │ │ └── CollectionImpl.hpp │ │ │ │ ├── Configuration.hpp │ │ │ │ ├── Deserialization │ │ │ │ │ ├── DeserializationError.hpp │ │ │ │ │ ├── Filter.hpp │ │ │ │ │ ├── NestingLimit.hpp │ │ │ │ │ ├── Reader.hpp │ │ │ │ │ ├── Readers │ │ │ │ │ │ ├── ArduinoStreamReader.hpp │ │ │ │ │ │ ├── ArduinoStringReader.hpp │ │ │ │ │ │ ├── FlashReader.hpp │ │ │ │ │ │ ├── IteratorReader.hpp │ │ │ │ │ │ ├── RamReader.hpp │ │ │ │ │ │ ├── StdStreamReader.hpp │ │ │ │ │ │ └── VariantReader.hpp │ │ │ │ │ └── deserialize.hpp │ │ │ │ ├── Document │ │ │ │ │ ├── BasicJsonDocument.hpp │ │ │ │ │ ├── DynamicJsonDocument.hpp │ │ │ │ │ ├── JsonDocument.hpp │ │ │ │ │ └── StaticJsonDocument.hpp │ │ │ │ ├── Json │ │ │ │ │ ├── EscapeSequence.hpp │ │ │ │ │ ├── JsonDeserializer.hpp │ │ │ │ │ ├── JsonSerializer.hpp │ │ │ │ │ ├── Latch.hpp │ │ │ │ │ ├── PrettyJsonSerializer.hpp │ │ │ │ │ ├── TextFormatter.hpp │ │ │ │ │ ├── Utf16.hpp │ │ │ │ │ └── Utf8.hpp │ │ │ │ ├── Memory │ │ │ │ │ ├── Alignment.hpp │ │ │ │ │ └── MemoryPool.hpp │ │ │ │ ├── Misc │ │ │ │ │ ├── SerializedValue.hpp │ │ │ │ │ └── Visitable.hpp │ │ │ │ ├── MsgPack │ │ │ │ │ ├── MsgPackDeserializer.hpp │ │ │ │ │ ├── MsgPackSerializer.hpp │ │ │ │ │ ├── endianess.hpp │ │ │ │ │ └── ieee754.hpp │ │ │ │ ├── Namespace.hpp │ │ │ │ ├── Numbers │ │ │ │ │ ├── Float.hpp │ │ │ │ │ ├── FloatParts.hpp │ │ │ │ │ ├── FloatTraits.hpp │ │ │ │ │ ├── Integer.hpp │ │ │ │ │ ├── arithmeticCompare.hpp │ │ │ │ │ ├── convertNumber.hpp │ │ │ │ │ └── parseNumber.hpp │ │ │ │ ├── Object │ │ │ │ │ ├── MemberProxy.hpp │ │ │ │ │ ├── ObjectFunctions.hpp │ │ │ │ │ ├── ObjectImpl.hpp │ │ │ │ │ ├── ObjectIterator.hpp │ │ │ │ │ ├── ObjectRef.hpp │ │ │ │ │ ├── ObjectShortcuts.hpp │ │ │ │ │ └── Pair.hpp │ │ │ │ ├── Polyfills │ │ │ │ │ ├── alias_cast.hpp │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── attributes.hpp │ │ │ │ │ ├── ctype.hpp │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── math.hpp │ │ │ │ │ ├── mpl │ │ │ │ │ │ └── max.hpp │ │ │ │ │ ├── pgmspace.hpp │ │ │ │ │ ├── pgmspace_generic.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── safe_strcmp.hpp │ │ │ │ │ ├── static_array.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── type_traits │ │ │ │ │ │ ├── conditional.hpp │ │ │ │ │ │ ├── declval.hpp │ │ │ │ │ │ ├── enable_if.hpp │ │ │ │ │ │ ├── integral_constant.hpp │ │ │ │ │ │ ├── is_array.hpp │ │ │ │ │ │ ├── is_base_of.hpp │ │ │ │ │ │ ├── is_class.hpp │ │ │ │ │ │ ├── is_const.hpp │ │ │ │ │ │ ├── is_convertible.hpp │ │ │ │ │ │ ├── is_enum.hpp │ │ │ │ │ │ ├── is_floating_point.hpp │ │ │ │ │ │ ├── is_integral.hpp │ │ │ │ │ │ ├── is_pointer.hpp │ │ │ │ │ │ ├── is_same.hpp │ │ │ │ │ │ ├── is_signed.hpp │ │ │ │ │ │ ├── is_unsigned.hpp │ │ │ │ │ │ ├── make_unsigned.hpp │ │ │ │ │ │ ├── remove_const.hpp │ │ │ │ │ │ ├── remove_reference.hpp │ │ │ │ │ │ └── type_identity.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── Serialization │ │ │ │ │ ├── CountingDecorator.hpp │ │ │ │ │ ├── Writer.hpp │ │ │ │ │ ├── Writers │ │ │ │ │ │ ├── ArduinoStringWriter.hpp │ │ │ │ │ │ ├── DummyWriter.hpp │ │ │ │ │ │ ├── PrintWriter.hpp │ │ │ │ │ │ ├── StaticStringWriter.hpp │ │ │ │ │ │ ├── StdStreamWriter.hpp │ │ │ │ │ │ └── StdStringWriter.hpp │ │ │ │ │ ├── measure.hpp │ │ │ │ │ └── serialize.hpp │ │ │ │ ├── StringStorage │ │ │ │ │ ├── StringCopier.hpp │ │ │ │ │ ├── StringMover.hpp │ │ │ │ │ └── StringStorage.hpp │ │ │ │ ├── Strings │ │ │ │ │ ├── ArduinoStringAdapter.hpp │ │ │ │ │ ├── ConstRamStringAdapter.hpp │ │ │ │ │ ├── FlashStringAdapter.hpp │ │ │ │ │ ├── FlashStringIterator.hpp │ │ │ │ │ ├── IsString.hpp │ │ │ │ │ ├── IsWriteableString.hpp │ │ │ │ │ ├── RamStringAdapter.hpp │ │ │ │ │ ├── SizedFlashStringAdapter.hpp │ │ │ │ │ ├── SizedRamStringAdapter.hpp │ │ │ │ │ ├── StdStringAdapter.hpp │ │ │ │ │ ├── StoragePolicy.hpp │ │ │ │ │ ├── String.hpp │ │ │ │ │ └── StringAdapters.hpp │ │ │ │ ├── Variant │ │ │ │ │ ├── Converter.hpp │ │ │ │ │ ├── ConverterImpl.hpp │ │ │ │ │ ├── SlotFunctions.hpp │ │ │ │ │ ├── VariantCompare.hpp │ │ │ │ │ ├── VariantContent.hpp │ │ │ │ │ ├── VariantData.hpp │ │ │ │ │ ├── VariantFunctions.hpp │ │ │ │ │ ├── VariantImpl.hpp │ │ │ │ │ ├── VariantOperators.hpp │ │ │ │ │ ├── VariantRef.hpp │ │ │ │ │ ├── VariantShortcuts.hpp │ │ │ │ │ ├── VariantSlot.hpp │ │ │ │ │ ├── VariantTag.hpp │ │ │ │ │ ├── VariantTo.hpp │ │ │ │ │ └── Visitor.hpp │ │ │ │ ├── compatibility.hpp │ │ │ │ └── version.hpp │ │ │ │ └── CMakeLists.txt │ │ ├── ButtonEvent │ │ │ ├── ButtonEvent.cpp │ │ │ ├── ButtonEvent.h │ │ │ └── EventType.inc │ │ ├── README │ │ ├── SD │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── SD_Test │ │ │ │ │ └── SD_Test.ino │ │ │ │ └── SD_time │ │ │ │ │ └── SD_time.ino │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── SD.cpp │ │ │ │ ├── SD.h │ │ │ │ ├── sd_defines.h │ │ │ │ ├── sd_diskio.cpp │ │ │ │ ├── sd_diskio.h │ │ │ │ └── sd_diskio_crc.c │ │ ├── SPI │ │ │ ├── examples │ │ │ │ └── SPI_Multiple_Buses │ │ │ │ │ └── SPI_Multiple_Buses.ino │ │ │ ├── keywords.txt │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── SPI.cpp │ │ │ │ └── SPI.h │ │ ├── TFT_eSPI │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── Processors │ │ │ │ ├── TFT_eSPI_ESP32.c │ │ │ │ ├── TFT_eSPI_ESP32.h │ │ │ │ ├── TFT_eSPI_ESP8266.c │ │ │ │ ├── TFT_eSPI_ESP8266.h │ │ │ │ ├── TFT_eSPI_Generic.c │ │ │ │ ├── TFT_eSPI_Generic.h │ │ │ │ ├── TFT_eSPI_STM32.c │ │ │ │ └── TFT_eSPI_STM32.h │ │ │ ├── README.md │ │ │ ├── README.txt │ │ │ ├── TFT_Drivers │ │ │ │ ├── EPD_Defines.h │ │ │ │ ├── GC9A01_Defines.h │ │ │ │ ├── GC9A01_Init.h │ │ │ │ ├── GC9A01_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 │ │ │ │ ├── RM68140_Defines.h │ │ │ │ ├── RM68140_Init.h │ │ │ │ ├── RM68140_Rotation.h │ │ │ │ ├── S6D02A1_Defines.h │ │ │ │ ├── S6D02A1_Init.h │ │ │ │ ├── S6D02A1_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_eSPI.cpp │ │ │ ├── TFT_eSPI.h │ │ │ ├── Tools │ │ │ │ ├── Create_Smooth_Font │ │ │ │ │ └── Create_font │ │ │ │ │ │ ├── Create_font.pde │ │ │ │ │ │ ├── FontFiles │ │ │ │ │ │ └── Final-Frontier28.vlw │ │ │ │ │ │ └── data │ │ │ │ │ │ └── Final-Frontier.ttf │ │ │ │ ├── ESP32 UNO board mod │ │ │ │ │ ├── ESP32 UNO board mod.jpg │ │ │ │ │ └── ESP32 UNO board pinout.jpg │ │ │ │ ├── Images │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bmp2array4bit.py │ │ │ │ │ └── star.bmp │ │ │ │ ├── PlatformIO │ │ │ │ │ └── Configuring options.txt │ │ │ │ ├── RPi_TFT_Connections.png │ │ │ │ ├── RPi_TFT_mod.png │ │ │ │ └── Screenshot_client │ │ │ │ │ └── Screenshot_client.pde │ │ │ ├── User_Setup_Select.h │ │ │ ├── User_Setups │ │ │ │ ├── Setup10_RPi_touch_ILI9486.h │ │ │ │ ├── Setup11_RPi_touch_ILI9486.h │ │ │ │ ├── Setup12_M5Stack.h │ │ │ │ ├── Setup135_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 │ │ │ │ ├── Setup20_ILI9488.h │ │ │ │ ├── Setup21_ILI9488.h │ │ │ │ ├── Setup22_TTGO_T4.h │ │ │ │ ├── Setup22_TTGO_T4_v1.3.h │ │ │ │ ├── Setup23_TTGO_TM.h │ │ │ │ ├── Setup24_ST7789.h │ │ │ │ ├── Setup25_TTGO_T_Display.h │ │ │ │ ├── Setup26_TTGO_T_Wristband.h │ │ │ │ ├── Setup27_RPi_ST7796_ESP32.h │ │ │ │ ├── Setup28_RPi_ST7796_ESP8266.h │ │ │ │ ├── Setup29_ILI9341_STM32.h │ │ │ │ ├── Setup2_ST7735.h │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── Setup5_RPi_ILI9486.h │ │ │ │ ├── Setup6_RPi_Wr_ILI9486.h │ │ │ │ ├── Setup7_ST7735_128x128.h │ │ │ │ ├── Setup8_ILI9163_128x128.h │ │ │ │ ├── Setup9_ST7735_Overlap.h │ │ │ │ ├── SetupX_Template.h │ │ │ │ └── User_Custom_Fonts.h │ │ │ ├── examples │ │ │ │ ├── 160 x 128 │ │ │ │ │ ├── Arduino_Life │ │ │ │ │ │ └── Arduino_Life.ino │ │ │ │ │ ├── Pong_v3 │ │ │ │ │ │ └── Pong_v3.ino │ │ │ │ │ ├── RLE_Font_test │ │ │ │ │ │ └── RLE_Font_test.ino │ │ │ │ │ ├── TFT_Char_times │ │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ │ ├── TFT_Clock │ │ │ │ │ │ └── TFT_Clock.ino │ │ │ │ │ ├── TFT_Clock_Digital │ │ │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ │ ├── TFT_Meter_5 │ │ │ │ │ │ └── TFT_Meter_5.ino │ │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ │ ├── TFT_Rainbow │ │ │ │ │ │ └── TFT_Rainbow.ino │ │ │ │ │ ├── TFT_flash_jpg │ │ │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ │ │ ├── jpeg1.h │ │ │ │ │ │ ├── jpeg2.h │ │ │ │ │ │ ├── jpeg3.h │ │ │ │ │ │ └── jpeg4.h │ │ │ │ │ ├── TFT_graphicstest_PDQ3 │ │ │ │ │ │ └── TFT_graphicstest_PDQ3.ino │ │ │ │ │ ├── TFT_graphicstest_small │ │ │ │ │ │ └── TFT_graphicstest_small.ino │ │ │ │ │ └── UTFT_demo_fast │ │ │ │ │ │ └── UTFT_demo_fast.ino │ │ │ │ ├── 320 x 240 │ │ │ │ │ ├── All_Free_Fonts_Demo │ │ │ │ │ │ ├── All_Free_Fonts_Demo.ino │ │ │ │ │ │ └── Free_Fonts.h │ │ │ │ │ ├── Cellular_Automata │ │ │ │ │ │ └── Cellular_Automata.ino │ │ │ │ │ ├── Free_Font_Demo │ │ │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ │ │ └── Free_Fonts.h │ │ │ │ │ ├── Keypad_240x320 │ │ │ │ │ │ └── Keypad_240x320.ino │ │ │ │ │ ├── RLE_Font_test │ │ │ │ │ │ └── RLE_Font_test.ino │ │ │ │ │ ├── Read_ID_bitbash │ │ │ │ │ │ └── Read_ID_bitbash.ino │ │ │ │ │ ├── TFT_ArcFill │ │ │ │ │ │ └── TFT_ArcFill.ino │ │ │ │ │ ├── TFT_Char_times │ │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ │ ├── TFT_Clock │ │ │ │ │ │ └── TFT_Clock.ino │ │ │ │ │ ├── TFT_Clock_Digital │ │ │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ │ │ ├── TFT_Custom_Fonts │ │ │ │ │ │ └── TFT_Custom_Fonts.ino │ │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ │ ├── TFT_FillArcSpiral │ │ │ │ │ │ └── TFT_FillArcSpiral.ino │ │ │ │ │ ├── TFT_Float_Test │ │ │ │ │ │ └── TFT_Float_Test.ino │ │ │ │ │ ├── TFT_Mandlebrot │ │ │ │ │ │ └── TFT_Mandlebrot.ino │ │ │ │ │ ├── TFT_Matrix │ │ │ │ │ │ └── TFT_Matrix.ino │ │ │ │ │ ├── TFT_Meter_linear │ │ │ │ │ │ └── TFT_Meter_linear.ino │ │ │ │ │ ├── TFT_Meters │ │ │ │ │ │ └── TFT_Meters.ino │ │ │ │ │ ├── TFT_Pie_Chart │ │ │ │ │ │ └── TFT_Pie_Chart.ino │ │ │ │ │ ├── TFT_Pong │ │ │ │ │ │ └── TFT_Pong.ino │ │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ │ ├── TFT_Rainbow_one_lib │ │ │ │ │ │ └── TFT_Rainbow_one_lib.ino │ │ │ │ │ ├── TFT_Read_Reg │ │ │ │ │ │ └── TFT_Read_Reg.ino │ │ │ │ │ ├── TFT_Spiro │ │ │ │ │ │ └── TFT_Spiro.ino │ │ │ │ │ ├── TFT_Starfield │ │ │ │ │ │ └── TFT_Starfield.ino │ │ │ │ │ ├── TFT_String_Align │ │ │ │ │ │ └── TFT_String_Align.ino │ │ │ │ │ ├── TFT_Terminal │ │ │ │ │ │ └── TFT_Terminal.ino │ │ │ │ │ ├── TFT_graphicstest_PDQ │ │ │ │ │ │ └── TFT_graphicstest_PDQ.ino │ │ │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ │ │ └── UTFT_demo │ │ │ │ │ │ └── UTFT_demo.ino │ │ │ │ ├── 480 x 320 │ │ │ │ │ ├── Cellular_Automata │ │ │ │ │ │ └── Cellular_Automata.ino │ │ │ │ │ ├── Demo_3D_cube │ │ │ │ │ │ └── Demo_3D_cube.ino │ │ │ │ │ ├── Free_Font_Demo │ │ │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ │ │ └── Free_Fonts.h │ │ │ │ │ ├── Graph_2 │ │ │ │ │ │ └── Graph_2.ino │ │ │ │ │ ├── Keypad_480x320 │ │ │ │ │ │ └── Keypad_480x320.ino │ │ │ │ │ ├── TFT_Char_times │ │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ │ ├── TFT_Meter_4 │ │ │ │ │ │ └── TFT_Meter_4.ino │ │ │ │ │ ├── TFT_Meters │ │ │ │ │ │ └── TFT_Meters.ino │ │ │ │ │ ├── TFT_Padding_demo │ │ │ │ │ │ └── TFT_Padding_demo.ino │ │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ │ ├── TFT_Rainbow480 │ │ │ │ │ │ └── TFT_Rainbow480.ino │ │ │ │ │ ├── TFT_String_Align │ │ │ │ │ │ └── TFT_String_Align.ino │ │ │ │ │ ├── TFT_flash_jpg │ │ │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ │ │ ├── jpeg1.h │ │ │ │ │ │ ├── jpeg2.h │ │ │ │ │ │ ├── jpeg3.h │ │ │ │ │ │ └── jpeg4.h │ │ │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ │ │ ├── TFT_ring_meter │ │ │ │ │ │ ├── Alert.h │ │ │ │ │ │ └── TFT_ring_meter.ino │ │ │ │ │ ├── Touch_Controller_Demo │ │ │ │ │ │ └── Touch_Controller_Demo.ino │ │ │ │ │ └── UTFT_Demo_480x320 │ │ │ │ │ │ └── UTFT_Demo_480x320.ino │ │ │ │ ├── DMA test │ │ │ │ │ ├── Flash_Jpg_DMA │ │ │ │ │ │ ├── Flash_Jpg_DMA.ino │ │ │ │ │ │ └── panda.h │ │ │ │ │ ├── SpriteRotatingCube │ │ │ │ │ │ └── SpriteRotatingCube.ino │ │ │ │ │ └── boing_ball │ │ │ │ │ │ ├── boing_ball.ino │ │ │ │ │ │ └── graphic.h │ │ │ │ ├── Generic │ │ │ │ │ ├── Animated_Eyes_1 │ │ │ │ │ │ ├── Animated_Eyes_1.ino │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── catEye.h │ │ │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ │ │ ├── doeEye.h │ │ │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ │ │ ├── goatEye.h │ │ │ │ │ │ │ ├── logo.h │ │ │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ │ │ ├── newtEye.h │ │ │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ │ │ ├── owlEye.h │ │ │ │ │ │ │ └── terminatorEye.h │ │ │ │ │ │ ├── eye_functions.ino │ │ │ │ │ │ ├── user.cpp │ │ │ │ │ │ ├── user_bat.cpp │ │ │ │ │ │ └── user_xmas.cpp │ │ │ │ │ ├── Animated_Eyes_2 │ │ │ │ │ │ ├── Animated_Eyes_2.ino │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── catEye.h │ │ │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ │ │ ├── doeEye.h │ │ │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ │ │ ├── goatEye.h │ │ │ │ │ │ │ ├── logo.h │ │ │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ │ │ ├── newtEye.h │ │ │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ │ │ ├── owlEye.h │ │ │ │ │ │ │ └── terminatorEye.h │ │ │ │ │ │ ├── eye_functions.ino │ │ │ │ │ │ ├── user.cpp │ │ │ │ │ │ ├── user_bat.cpp │ │ │ │ │ │ ├── user_xmas.cpp │ │ │ │ │ │ └── wiring.ino │ │ │ │ │ ├── ESP32_SDcard_jpeg │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── Baboon40.jpg │ │ │ │ │ │ │ ├── EagleEye.jpg │ │ │ │ │ │ │ ├── Mouse480.jpg │ │ │ │ │ │ │ └── lena20k.jpg │ │ │ │ │ │ └── ESP32_SDcard_jpeg.ino │ │ │ │ │ ├── ESP8266_uncannyEyes │ │ │ │ │ │ ├── ESP8266_uncannyEyes.ino │ │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ │ ├── goatEye.h │ │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ │ └── screenshotToConsole.ino │ │ │ │ │ ├── Local_Custom_Fonts │ │ │ │ │ │ ├── Local_Custom_Fonts.ino │ │ │ │ │ │ └── MyFont.h │ │ │ │ │ ├── On_Off_Button │ │ │ │ │ │ └── On_Off_Button.ino │ │ │ │ │ ├── TFT_Button_Label_Datum │ │ │ │ │ │ └── TFT_Button_Label_Datum.ino │ │ │ │ │ ├── TFT_Flash_Bitmap │ │ │ │ │ │ ├── Alert.h │ │ │ │ │ │ ├── Close.h │ │ │ │ │ │ ├── Info.h │ │ │ │ │ │ └── TFT_Flash_Bitmap.ino │ │ │ │ │ ├── TFT_SPIFFS_BMP │ │ │ │ │ │ ├── BMP_functions.ino │ │ │ │ │ │ ├── TFT_SPIFFS_BMP.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── parrot.bmp │ │ │ │ │ ├── TFT_Screen_Capture │ │ │ │ │ │ ├── TFT_Screen_Capture.ino │ │ │ │ │ │ ├── processing_sketch.ino │ │ │ │ │ │ └── screenServer.ino │ │ │ │ │ ├── Touch_calibrate │ │ │ │ │ │ └── Touch_calibrate.ino │ │ │ │ │ ├── Viewport_Demo │ │ │ │ │ │ ├── Viewport_Demo.ino │ │ │ │ │ │ └── Viewport_commands.ino │ │ │ │ │ ├── Viewport_graphicstest │ │ │ │ │ │ └── Viewport_graphicstest.ino │ │ │ │ │ ├── alphaBlend_Test │ │ │ │ │ │ └── alphaBlend_Test.ino │ │ │ │ │ └── drawXBitmap │ │ │ │ │ │ ├── drawXBitmap.ino │ │ │ │ │ │ └── xbm.h │ │ │ │ ├── Smooth Fonts │ │ │ │ │ ├── FLASH_Array │ │ │ │ │ │ ├── Font_Demo_1_Array │ │ │ │ │ │ │ ├── Font_Demo_1_Array.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ │ │ ├── Font_Demo_2_Array │ │ │ │ │ │ │ ├── Font_Demo_2_Array.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ │ │ ├── Font_Demo_3_Array │ │ │ │ │ │ │ ├── Font_Demo_3_Array.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ │ └── NotoSansMonoSCB20.h │ │ │ │ │ │ ├── Font_Demo_4_Array │ │ │ │ │ │ │ ├── Font_Demo_4_Array.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ │ │ └── Print_Smooth_Font.ino │ │ │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ │ └── Smooth_font_gradient.ino │ │ │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ │ └── Smooth_font_reading_TFT.ino │ │ │ │ │ │ └── Unicode_test │ │ │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ │ │ ├── Latin_Hiragana_24.h │ │ │ │ │ │ │ ├── Unicode_Test_72.h │ │ │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ │ │ ├── LittleFS │ │ │ │ │ │ ├── Font_Demo_1 │ │ │ │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Font_Demo_2 │ │ │ │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Font_Demo_3 │ │ │ │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ │ │ ├── Font_Demo_4 │ │ │ │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ └── Unicode_test │ │ │ │ │ │ │ ├── LittleFS_functions.ino │ │ │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ │ │ ├── SD_Card │ │ │ │ │ │ └── ESP32_Smooth_Font_SD │ │ │ │ │ │ │ ├── ESP32_Smooth_Font_SD.ino │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ │ └── SPIFFS │ │ │ │ │ │ ├── Font_Demo_1 │ │ │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Font_Demo_2 │ │ │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Font_Demo_3 │ │ │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ │ │ ├── Font_Demo_4 │ │ │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ │ └── Unicode_test │ │ │ │ │ │ ├── SPIFFS_functions.ino │ │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ │ ├── Sprite │ │ │ │ │ ├── Animated_dial │ │ │ │ │ │ ├── Animated_dial.ino │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ └── dial.jpg │ │ │ │ │ │ └── dial.h │ │ │ │ │ ├── One_bit_Sprite_Demo │ │ │ │ │ │ └── One_bit_Sprite_Demo.ino │ │ │ │ │ ├── One_bit_Yin_Yang │ │ │ │ │ │ └── One_bit_Yin_Yang.ino │ │ │ │ │ ├── Orrery │ │ │ │ │ │ ├── Orrery.ino │ │ │ │ │ │ ├── astronomy.c │ │ │ │ │ │ └── astronomy.h │ │ │ │ │ ├── Rotated_Sprite_1 │ │ │ │ │ │ └── Rotated_Sprite_1.ino │ │ │ │ │ ├── Rotated_Sprite_2 │ │ │ │ │ │ └── Rotated_Sprite_2.ino │ │ │ │ │ ├── Rotated_Sprite_3 │ │ │ │ │ │ ├── Rotated_Sprite_3.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── EagleEye.jpg │ │ │ │ │ │ │ └── Eye_80x64.jpg │ │ │ │ │ ├── Sprite_RLE_Font_test │ │ │ │ │ │ └── Sprite_RLE_Font_test.ino │ │ │ │ │ ├── Sprite_TFT_Rainbow │ │ │ │ │ │ └── Sprite_TFT_Rainbow.ino │ │ │ │ │ ├── Sprite_draw │ │ │ │ │ │ └── Sprite_draw.ino │ │ │ │ │ ├── Sprite_draw_4bit │ │ │ │ │ │ └── Sprite_draw_4bit.ino │ │ │ │ │ ├── Sprite_image_4bit │ │ │ │ │ │ ├── Sprite_image_4bit.ino │ │ │ │ │ │ ├── sample_images.h │ │ │ │ │ │ └── starImage.cpp │ │ │ │ │ ├── Sprite_scroll │ │ │ │ │ │ └── Sprite_scroll.ino │ │ │ │ │ ├── Sprite_scroll_16bit │ │ │ │ │ │ └── Sprite_scroll_16bit.ino │ │ │ │ │ ├── Sprite_scroll_1bit │ │ │ │ │ │ └── Sprite_scroll_1bit.ino │ │ │ │ │ ├── Sprite_scroll_4bit │ │ │ │ │ │ └── Sprite_scroll_4bit.ino │ │ │ │ │ ├── Sprite_scroll_8bit │ │ │ │ │ │ └── Sprite_scroll_8bit.ino │ │ │ │ │ ├── Sprite_scroll_wrap_1bit │ │ │ │ │ │ └── Sprite_scroll_wrap_1bit.ino │ │ │ │ │ ├── Transparent_Sprite_Demo │ │ │ │ │ │ └── Transparent_Sprite_Demo.ino │ │ │ │ │ └── Transparent_Sprite_Demo_4bit │ │ │ │ │ │ └── Transparent_Sprite_Demo_4bit.ino │ │ │ │ ├── Test and diagnostics │ │ │ │ │ ├── Colour_Test │ │ │ │ │ │ └── Colour_Test.ino │ │ │ │ │ ├── Read_User_Setup │ │ │ │ │ │ └── Read_User_Setup.ino │ │ │ │ │ └── Test_Touch_Controller │ │ │ │ │ │ └── Test_Touch_Controller.ino │ │ │ │ └── ePaper │ │ │ │ │ └── Floyd_Steinberg │ │ │ │ │ ├── EPD_Support.h │ │ │ │ │ ├── Floyd_Steinberg.ino │ │ │ │ │ ├── Floyd_Steinberg_BMP.ino │ │ │ │ │ ├── SPIFFS.ino │ │ │ │ │ └── data │ │ │ │ │ ├── TestCard.bmp │ │ │ │ │ └── Tiger.bmp │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ └── license.txt │ │ └── lvgl │ │ │ ├── .codecov.yml │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── README_zh.md │ │ │ ├── SConscript │ │ │ ├── component.mk │ │ │ ├── demos │ │ │ ├── README.md │ │ │ ├── benchmark │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── img_benchmark_cogwheel_alpha16.c │ │ │ │ │ ├── img_benchmark_cogwheel_argb.c │ │ │ │ │ ├── img_benchmark_cogwheel_chroma_keyed.c │ │ │ │ │ ├── img_benchmark_cogwheel_indexed16.c │ │ │ │ │ ├── img_benchmark_cogwheel_rgb.c │ │ │ │ │ ├── img_cogwheel_argb.png │ │ │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ │ │ ├── img_cogwheel_indexed16.png │ │ │ │ │ ├── img_cogwheel_rgb.png │ │ │ │ │ ├── lv_font_bechmark_montserrat_12_compr_az.c.c │ │ │ │ │ ├── lv_font_bechmark_montserrat_16_compr_az.c.c │ │ │ │ │ └── lv_font_bechmark_montserrat_28_compr_az.c.c │ │ │ │ ├── lv_demo_benchmark.c │ │ │ │ ├── lv_demo_benchmark.h │ │ │ │ ├── screenshot1.png │ │ │ │ └── screenshot2.png │ │ │ ├── keypad_encoder │ │ │ │ ├── README.md │ │ │ │ ├── lv_demo_keypad_encoder.c │ │ │ │ ├── lv_demo_keypad_encoder.h │ │ │ │ ├── screenshot1.gif │ │ │ │ └── screenshot1.png │ │ │ ├── lv_demos.h │ │ │ ├── lv_demos.mk │ │ │ ├── music │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── img_lv_demo_music_btn_corner_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_list_pause.c │ │ │ │ │ ├── img_lv_demo_music_btn_list_pause_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_list_play.c │ │ │ │ │ ├── img_lv_demo_music_btn_list_play_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_loop.c │ │ │ │ │ ├── img_lv_demo_music_btn_loop_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_next.c │ │ │ │ │ ├── img_lv_demo_music_btn_next_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_pause.c │ │ │ │ │ ├── img_lv_demo_music_btn_pause_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_play.c │ │ │ │ │ ├── img_lv_demo_music_btn_play_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_prev.c │ │ │ │ │ ├── img_lv_demo_music_btn_prev_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_rnd.c │ │ │ │ │ ├── img_lv_demo_music_btn_rnd_large.c │ │ │ │ │ ├── img_lv_demo_music_corner_left.c │ │ │ │ │ ├── img_lv_demo_music_corner_left_large.c │ │ │ │ │ ├── img_lv_demo_music_corner_right.c │ │ │ │ │ ├── img_lv_demo_music_corner_right_large.c │ │ │ │ │ ├── img_lv_demo_music_cover_1.c │ │ │ │ │ ├── img_lv_demo_music_cover_1_large.c │ │ │ │ │ ├── img_lv_demo_music_cover_2.c │ │ │ │ │ ├── img_lv_demo_music_cover_2_large.c │ │ │ │ │ ├── img_lv_demo_music_cover_3.c │ │ │ │ │ ├── img_lv_demo_music_cover_3_large.c │ │ │ │ │ ├── img_lv_demo_music_icon_1.c │ │ │ │ │ ├── img_lv_demo_music_icon_1_large.c │ │ │ │ │ ├── img_lv_demo_music_icon_2.c │ │ │ │ │ ├── img_lv_demo_music_icon_2_large.c │ │ │ │ │ ├── img_lv_demo_music_icon_3.c │ │ │ │ │ ├── img_lv_demo_music_icon_3_large.c │ │ │ │ │ ├── img_lv_demo_music_icon_4.c │ │ │ │ │ ├── img_lv_demo_music_icon_4_large.c │ │ │ │ │ ├── img_lv_demo_music_list_border.c │ │ │ │ │ ├── img_lv_demo_music_list_border_large.c │ │ │ │ │ ├── img_lv_demo_music_logo.c │ │ │ │ │ ├── img_lv_demo_music_slider_knob.c │ │ │ │ │ ├── img_lv_demo_music_slider_knob_large.c │ │ │ │ │ ├── img_lv_demo_music_wave_bottom.c │ │ │ │ │ ├── img_lv_demo_music_wave_bottom_large.c │ │ │ │ │ ├── img_lv_demo_music_wave_top.c │ │ │ │ │ ├── img_lv_demo_music_wave_top_large.c │ │ │ │ │ ├── spectrum.py │ │ │ │ │ ├── spectrum_1.h │ │ │ │ │ ├── spectrum_2.h │ │ │ │ │ └── spectrum_3.h │ │ │ │ ├── lv_demo_music.c │ │ │ │ ├── lv_demo_music.h │ │ │ │ ├── lv_demo_music_list.c │ │ │ │ ├── lv_demo_music_list.h │ │ │ │ ├── lv_demo_music_main.c │ │ │ │ ├── lv_demo_music_main.h │ │ │ │ └── screenshot1.gif │ │ │ ├── stress │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── lv_font_montserrat_12_compr_az.c │ │ │ │ │ ├── lv_font_montserrat_16_compr_az.c │ │ │ │ │ └── lv_font_montserrat_28_compr_az.c │ │ │ │ ├── lv_demo_stress.c │ │ │ │ ├── lv_demo_stress.h │ │ │ │ ├── screenshot1.gif │ │ │ │ └── screenshot1.png │ │ │ └── widgets │ │ │ │ ├── assets │ │ │ │ ├── avatar.png │ │ │ │ ├── clothes.png │ │ │ │ ├── img_clothes.c │ │ │ │ ├── img_demo_widgets_avatar.c │ │ │ │ ├── img_lvgl_logo.c │ │ │ │ └── lvgl_logo.png │ │ │ │ ├── lv_demo_widgets.c │ │ │ │ ├── lv_demo_widgets.h │ │ │ │ ├── lv_demo_widgets.py │ │ │ │ ├── screenshot1.gif │ │ │ │ └── screenshot1.png │ │ │ ├── docs │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ROADMAP.md │ │ │ ├── _ext │ │ │ │ └── lv_example.py │ │ │ ├── _static │ │ │ │ ├── css │ │ │ │ │ ├── custom.css │ │ │ │ │ └── fontawesome.min.css │ │ │ │ └── img │ │ │ │ │ ├── home_1.png │ │ │ │ │ ├── home_2.png │ │ │ │ │ ├── home_3.png │ │ │ │ │ ├── home_4.png │ │ │ │ │ ├── home_5.png │ │ │ │ │ ├── home_6.png │ │ │ │ │ └── home_banner.jpg │ │ │ ├── _templates │ │ │ │ ├── layout.html │ │ │ │ └── page.html │ │ │ ├── build.py │ │ │ ├── conf.py │ │ │ ├── example_list.py │ │ │ ├── favicon.png │ │ │ ├── get-started │ │ │ │ ├── arduino.md │ │ │ │ ├── cmake.md │ │ │ │ ├── espressif.md │ │ │ │ ├── index.md │ │ │ │ ├── micropython.md │ │ │ │ ├── nuttx.md │ │ │ │ ├── nxp.md │ │ │ │ ├── pc-simulator.md │ │ │ │ ├── quick-overview.md │ │ │ │ ├── rt-thread.md │ │ │ │ ├── stm32.md │ │ │ │ └── tasmota-berry.md │ │ │ ├── header.rst │ │ │ ├── index.md │ │ │ ├── intro │ │ │ │ └── index.md │ │ │ ├── layouts │ │ │ │ ├── flex.md │ │ │ │ ├── grid.md │ │ │ │ └── index.md │ │ │ ├── libs │ │ │ │ ├── bmp.md │ │ │ │ ├── ffmpeg.md │ │ │ │ ├── freetype.md │ │ │ │ ├── fsdrv.md │ │ │ │ ├── gif.md │ │ │ │ ├── index.md │ │ │ │ ├── png.md │ │ │ │ ├── qrcode.md │ │ │ │ ├── rlottie.md │ │ │ │ └── sjpg.md │ │ │ ├── logo_lvgl.png │ │ │ ├── misc │ │ │ │ ├── align.png │ │ │ │ ├── anim-timeline.png │ │ │ │ ├── bidi.png │ │ │ │ ├── boxmodel.png │ │ │ │ ├── btn_example.png │ │ │ │ ├── button_style_example.gif │ │ │ │ ├── button_style_example.png │ │ │ │ ├── codeblocks.jpg │ │ │ │ ├── eclipse.jpg │ │ │ │ ├── layers.png │ │ │ │ ├── par_child1.png │ │ │ │ ├── par_child2.png │ │ │ │ ├── par_child3.png │ │ │ │ ├── platformio.jpg │ │ │ │ ├── qtcreator.jpg │ │ │ │ ├── simple_button_example.gif │ │ │ │ ├── simple_button_example.png │ │ │ │ ├── symbols.png │ │ │ │ ├── sys.png │ │ │ │ └── visualstudio.jpg │ │ │ ├── others │ │ │ │ ├── fragment.md │ │ │ │ ├── gridnav.md │ │ │ │ ├── index.md │ │ │ │ ├── monkey.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 │ │ │ │ ├── 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 │ │ │ │ ├── task-handler.md │ │ │ │ └── tick.md │ │ │ ├── requirements.txt │ │ │ └── widgets │ │ │ │ ├── core │ │ │ │ ├── arc.md │ │ │ │ ├── bar.md │ │ │ │ ├── btn.md │ │ │ │ ├── btnmatrix.md │ │ │ │ ├── canvas.md │ │ │ │ ├── checkbox.md │ │ │ │ ├── dropdown.md │ │ │ │ ├── img.md │ │ │ │ ├── index.md │ │ │ │ ├── label.md │ │ │ │ ├── line.md │ │ │ │ ├── roller.md │ │ │ │ ├── slider.md │ │ │ │ ├── switch.md │ │ │ │ ├── table.md │ │ │ │ └── textarea.md │ │ │ │ ├── extra │ │ │ │ ├── animimg.md │ │ │ │ ├── calendar.md │ │ │ │ ├── chart.md │ │ │ │ ├── colorwheel.md │ │ │ │ ├── imgbtn.md │ │ │ │ ├── index.md │ │ │ │ ├── keyboard.md │ │ │ │ ├── led.md │ │ │ │ ├── list.md │ │ │ │ ├── menu.md │ │ │ │ ├── meter.md │ │ │ │ ├── msgbox.md │ │ │ │ ├── span.md │ │ │ │ ├── spinbox.md │ │ │ │ ├── spinner.md │ │ │ │ ├── tabview.md │ │ │ │ ├── tileview.md │ │ │ │ └── win.md │ │ │ │ ├── index.md │ │ │ │ └── obj.md │ │ │ ├── env_support │ │ │ ├── cmake │ │ │ │ ├── custom.cmake │ │ │ │ ├── esp.cmake │ │ │ │ ├── micropython.cmake │ │ │ │ └── zephyr.cmake │ │ │ ├── cmsis-pack │ │ │ │ ├── LVGL.lvgl.1.0.1-alpha3.pack │ │ │ │ ├── LVGL.pidx │ │ │ │ ├── README.md │ │ │ │ ├── gen_pack.sh │ │ │ │ ├── lv_cmsis_pack.txt │ │ │ │ └── lv_conf_cmsis.h │ │ │ ├── rt-thread │ │ │ │ ├── SConscript │ │ │ │ ├── lv_rt_thread_conf.h │ │ │ │ └── lv_rt_thread_port.c │ │ │ └── zephyr │ │ │ │ └── module.yml │ │ │ ├── examples │ │ │ ├── anim │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_anim.h │ │ │ │ ├── lv_example_anim_1.c │ │ │ │ ├── lv_example_anim_1.py │ │ │ │ ├── lv_example_anim_2.c │ │ │ │ ├── lv_example_anim_2.py │ │ │ │ ├── lv_example_anim_3.c │ │ │ │ ├── lv_example_anim_3.py │ │ │ │ ├── lv_example_anim_timeline_1.c │ │ │ │ └── lv_example_anim_timeline_1.py │ │ │ ├── arduino │ │ │ │ └── LVGL_Arduino │ │ │ │ │ └── LVGL_Arduino.ino │ │ │ ├── assets │ │ │ │ ├── animimg001.c │ │ │ │ ├── animimg001.png │ │ │ │ ├── animimg002.c │ │ │ │ ├── animimg002.png │ │ │ │ ├── animimg003.c │ │ │ │ ├── animimg003.png │ │ │ │ ├── caret_down.png │ │ │ │ ├── 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 │ │ │ ├── examples.mk │ │ │ ├── get_started │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_get_started.h │ │ │ │ ├── lv_example_get_started_1.c │ │ │ │ ├── lv_example_get_started_1.py │ │ │ │ ├── lv_example_get_started_2.c │ │ │ │ ├── lv_example_get_started_2.py │ │ │ │ ├── lv_example_get_started_3.c │ │ │ │ └── lv_example_get_started_3.py │ │ │ ├── header.py │ │ │ ├── layouts │ │ │ │ ├── flex │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_flex.h │ │ │ │ │ ├── lv_example_flex_1.c │ │ │ │ │ ├── lv_example_flex_1.py │ │ │ │ │ ├── lv_example_flex_2.c │ │ │ │ │ ├── lv_example_flex_2.py │ │ │ │ │ ├── lv_example_flex_3.c │ │ │ │ │ ├── lv_example_flex_3.py │ │ │ │ │ ├── lv_example_flex_4.c │ │ │ │ │ ├── lv_example_flex_4.py │ │ │ │ │ ├── lv_example_flex_5.c │ │ │ │ │ ├── lv_example_flex_5.py │ │ │ │ │ ├── lv_example_flex_6.c │ │ │ │ │ └── lv_example_flex_6.py │ │ │ │ ├── grid │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_grid.h │ │ │ │ │ ├── lv_example_grid_1.c │ │ │ │ │ ├── lv_example_grid_1.py │ │ │ │ │ ├── lv_example_grid_2.c │ │ │ │ │ ├── lv_example_grid_2.py │ │ │ │ │ ├── lv_example_grid_3.c │ │ │ │ │ ├── lv_example_grid_3.py │ │ │ │ │ ├── lv_example_grid_4.c │ │ │ │ │ ├── lv_example_grid_4.py │ │ │ │ │ ├── lv_example_grid_5.c │ │ │ │ │ ├── lv_example_grid_5.py │ │ │ │ │ ├── lv_example_grid_6.c │ │ │ │ │ └── lv_example_grid_6.py │ │ │ │ └── lv_example_layout.h │ │ │ ├── libs │ │ │ │ ├── bmp │ │ │ │ │ ├── example_16bit.bmp │ │ │ │ │ ├── example_24bit.bmp │ │ │ │ │ ├── example_32bit.bmp │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_bmp.h │ │ │ │ │ ├── lv_example_bmp_1.c │ │ │ │ │ └── lv_example_bmp_1.py │ │ │ │ ├── ffmpeg │ │ │ │ │ ├── birds.mp4 │ │ │ │ │ ├── ffmpeg.png │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_ffmpeg.h │ │ │ │ │ ├── lv_example_ffmpeg_1.c │ │ │ │ │ └── lv_example_ffmpeg_2.c │ │ │ │ ├── freetype │ │ │ │ │ ├── arial.ttf │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_freetype.h │ │ │ │ │ ├── lv_example_freetype_1.c │ │ │ │ │ └── lv_example_freetype_1.py │ │ │ │ ├── gif │ │ │ │ │ ├── bulb.gif │ │ │ │ │ ├── img_bulb_gif.c │ │ │ │ │ ├── img_bulb_gif.py │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_gif.h │ │ │ │ │ ├── lv_example_gif_1.c │ │ │ │ │ └── lv_example_gif_1.py │ │ │ │ ├── lv_example_libs.h │ │ │ │ ├── png │ │ │ │ │ ├── img_wink_png.c │ │ │ │ │ ├── img_wink_png.py │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_png.h │ │ │ │ │ ├── lv_example_png_1.c │ │ │ │ │ ├── lv_example_png_1.py │ │ │ │ │ └── wink.png │ │ │ │ ├── qrcode │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_qrcode.h │ │ │ │ │ ├── lv_example_qrcode_1.c │ │ │ │ │ └── lv_example_qrcode_1.py │ │ │ │ ├── rlottie │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_rlottie.h │ │ │ │ │ ├── lv_example_rlottie_1.c │ │ │ │ │ ├── lv_example_rlottie_1.py │ │ │ │ │ ├── lv_example_rlottie_2.c │ │ │ │ │ ├── lv_example_rlottie_2.py │ │ │ │ │ ├── lv_example_rlottie_approve.c │ │ │ │ │ ├── lv_example_rlottie_approve.json │ │ │ │ │ └── lv_example_rlottie_approve.py │ │ │ │ └── sjpg │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_sjpg.h │ │ │ │ │ ├── lv_example_sjpg_1.c │ │ │ │ │ ├── lv_example_sjpg_1.py │ │ │ │ │ └── small_image.sjpg │ │ │ ├── lv_examples.h │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ └── snapshot │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_snapshot.h │ │ │ │ │ ├── lv_example_snapshot_1.c │ │ │ │ │ └── lv_example_snapshot_1.py │ │ │ ├── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ │ ├── scroll │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_scroll.h │ │ │ │ ├── lv_example_scroll_1.c │ │ │ │ ├── lv_example_scroll_1.py │ │ │ │ ├── lv_example_scroll_2.c │ │ │ │ ├── lv_example_scroll_2.py │ │ │ │ ├── lv_example_scroll_3.c │ │ │ │ ├── lv_example_scroll_3.py │ │ │ │ ├── lv_example_scroll_4.c │ │ │ │ ├── lv_example_scroll_4.py │ │ │ │ ├── lv_example_scroll_5.c │ │ │ │ ├── lv_example_scroll_5.py │ │ │ │ ├── lv_example_scroll_6.c │ │ │ │ └── lv_example_scroll_6.py │ │ │ ├── styles │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_style.h │ │ │ │ ├── lv_example_style_1.c │ │ │ │ ├── lv_example_style_1.py │ │ │ │ ├── lv_example_style_10.c │ │ │ │ ├── lv_example_style_10.py │ │ │ │ ├── lv_example_style_11.c │ │ │ │ ├── lv_example_style_11.py │ │ │ │ ├── lv_example_style_12.c │ │ │ │ ├── lv_example_style_12.py │ │ │ │ ├── lv_example_style_13.c │ │ │ │ ├── lv_example_style_13.py │ │ │ │ ├── lv_example_style_14.c │ │ │ │ ├── lv_example_style_14.py │ │ │ │ ├── lv_example_style_2.c │ │ │ │ ├── lv_example_style_2.py │ │ │ │ ├── lv_example_style_3.c │ │ │ │ ├── lv_example_style_3.py │ │ │ │ ├── lv_example_style_4.c │ │ │ │ ├── lv_example_style_4.py │ │ │ │ ├── lv_example_style_5.c │ │ │ │ ├── lv_example_style_5.py │ │ │ │ ├── lv_example_style_6.c │ │ │ │ ├── lv_example_style_6.py │ │ │ │ ├── lv_example_style_7.c │ │ │ │ ├── lv_example_style_7.py │ │ │ │ ├── lv_example_style_8.c │ │ │ │ ├── lv_example_style_8.py │ │ │ │ ├── lv_example_style_9.c │ │ │ │ └── lv_example_style_9.py │ │ │ ├── test_ex.sh │ │ │ └── widgets │ │ │ │ ├── animimg │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_animimg_1.c │ │ │ │ └── lv_example_animimg_1.py │ │ │ │ ├── arc │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_arc_1.c │ │ │ │ ├── lv_example_arc_1.py │ │ │ │ ├── lv_example_arc_2.c │ │ │ │ └── lv_example_arc_2.py │ │ │ │ ├── bar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_bar_1.c │ │ │ │ ├── lv_example_bar_1.py │ │ │ │ ├── lv_example_bar_2.c │ │ │ │ ├── lv_example_bar_2.py │ │ │ │ ├── lv_example_bar_3.c │ │ │ │ ├── lv_example_bar_3.py │ │ │ │ ├── lv_example_bar_4.c │ │ │ │ ├── lv_example_bar_4.py │ │ │ │ ├── lv_example_bar_5.c │ │ │ │ ├── lv_example_bar_5.py │ │ │ │ ├── lv_example_bar_6.c │ │ │ │ ├── lv_example_bar_6.py │ │ │ │ └── test.py │ │ │ │ ├── btn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btn_1.c │ │ │ │ ├── lv_example_btn_1.py │ │ │ │ ├── lv_example_btn_2.c │ │ │ │ ├── lv_example_btn_2.py │ │ │ │ ├── lv_example_btn_3.c │ │ │ │ └── lv_example_btn_3.py │ │ │ │ ├── btnmatrix │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btnmatrix_1.c │ │ │ │ ├── lv_example_btnmatrix_1.py │ │ │ │ ├── lv_example_btnmatrix_2.c │ │ │ │ ├── lv_example_btnmatrix_2.py │ │ │ │ ├── lv_example_btnmatrix_3.c │ │ │ │ └── lv_example_btnmatrix_3.py │ │ │ │ ├── calendar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_calendar_1.c │ │ │ │ └── lv_example_calendar_1.py │ │ │ │ ├── canvas │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_canvas_1.c │ │ │ │ ├── lv_example_canvas_1.py │ │ │ │ ├── lv_example_canvas_2.c │ │ │ │ └── lv_example_canvas_2.py │ │ │ │ ├── chart │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_chart_1.c │ │ │ │ ├── lv_example_chart_1.py │ │ │ │ ├── lv_example_chart_2.c │ │ │ │ ├── lv_example_chart_2.py │ │ │ │ ├── lv_example_chart_3.c │ │ │ │ ├── lv_example_chart_3.py │ │ │ │ ├── lv_example_chart_4.c │ │ │ │ ├── lv_example_chart_4.py │ │ │ │ ├── lv_example_chart_5.c │ │ │ │ ├── lv_example_chart_5.py │ │ │ │ ├── lv_example_chart_6.c │ │ │ │ ├── lv_example_chart_6.py │ │ │ │ ├── lv_example_chart_7.c │ │ │ │ ├── lv_example_chart_7.py │ │ │ │ ├── lv_example_chart_8.c │ │ │ │ ├── lv_example_chart_8.py │ │ │ │ ├── lv_example_chart_9.c │ │ │ │ └── lv_example_chart_9.py │ │ │ │ ├── checkbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_checkbox_1.c │ │ │ │ ├── lv_example_checkbox_1.py │ │ │ │ └── lv_example_checkbox_2.c │ │ │ │ ├── colorwheel │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_colorwheel_1.c │ │ │ │ └── lv_example_colorwheel_1.py │ │ │ │ ├── dropdown │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_dropdown_1.c │ │ │ │ ├── lv_example_dropdown_1.py │ │ │ │ ├── lv_example_dropdown_2.c │ │ │ │ ├── lv_example_dropdown_2.py │ │ │ │ ├── lv_example_dropdown_3.c │ │ │ │ └── lv_example_dropdown_3.py │ │ │ │ ├── img │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_img_1.c │ │ │ │ ├── lv_example_img_1.py │ │ │ │ ├── lv_example_img_2.c │ │ │ │ ├── lv_example_img_2.py │ │ │ │ ├── lv_example_img_3.c │ │ │ │ ├── lv_example_img_3.py │ │ │ │ ├── lv_example_img_4.c │ │ │ │ └── lv_example_img_4.py │ │ │ │ ├── imgbtn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_imgbtn_1.c │ │ │ │ └── lv_example_imgbtn_1.py │ │ │ │ ├── keyboard │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_keyboard_1.c │ │ │ │ └── lv_example_keyboard_1.py │ │ │ │ ├── label │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_label_1.c │ │ │ │ ├── lv_example_label_1.py │ │ │ │ ├── lv_example_label_2.c │ │ │ │ ├── lv_example_label_2.py │ │ │ │ ├── lv_example_label_3.c │ │ │ │ ├── lv_example_label_3.py │ │ │ │ └── lv_example_label_4.c │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ │ ├── lv_draw.c │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_img.c │ │ │ │ ├── lv_draw_img.h │ │ │ │ ├── lv_draw_label.c │ │ │ │ ├── lv_draw_label.h │ │ │ │ ├── lv_draw_line.c │ │ │ │ ├── lv_draw_line.h │ │ │ │ ├── lv_draw_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ ├── lv_img_decoder.h │ │ │ │ ├── nxp_pxp │ │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ │ └── lv_gpu_nxp_pxp_osa.h │ │ │ │ ├── nxp_vglite │ │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ │ └── lv_gpu_nxp_vglite.h │ │ │ │ ├── sdl │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lv_draw_sdl.c │ │ │ │ │ ├── lv_draw_sdl.h │ │ │ │ │ ├── lv_draw_sdl.mk │ │ │ │ │ ├── lv_draw_sdl_arc.c │ │ │ │ │ ├── lv_draw_sdl_bg.c │ │ │ │ │ ├── lv_draw_sdl_composite.c │ │ │ │ │ ├── lv_draw_sdl_composite.h │ │ │ │ │ ├── lv_draw_sdl_img.c │ │ │ │ │ ├── lv_draw_sdl_img.h │ │ │ │ │ ├── lv_draw_sdl_label.c │ │ │ │ │ ├── lv_draw_sdl_line.c │ │ │ │ │ ├── lv_draw_sdl_mask.c │ │ │ │ │ ├── lv_draw_sdl_mask.h │ │ │ │ │ ├── lv_draw_sdl_polygon.c │ │ │ │ │ ├── lv_draw_sdl_priv.h │ │ │ │ │ ├── lv_draw_sdl_rect.c │ │ │ │ │ ├── lv_draw_sdl_rect.h │ │ │ │ │ ├── lv_draw_sdl_stack_blur.c │ │ │ │ │ ├── lv_draw_sdl_stack_blur.h │ │ │ │ │ ├── lv_draw_sdl_texture_cache.c │ │ │ │ │ ├── lv_draw_sdl_texture_cache.h │ │ │ │ │ ├── lv_draw_sdl_utils.c │ │ │ │ │ └── lv_draw_sdl_utils.h │ │ │ │ ├── stm32_dma2d │ │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ │ └── sw │ │ │ │ │ ├── lv_draw_sw.c │ │ │ │ │ ├── lv_draw_sw.h │ │ │ │ │ ├── lv_draw_sw.mk │ │ │ │ │ ├── lv_draw_sw_arc.c │ │ │ │ │ ├── lv_draw_sw_blend.c │ │ │ │ │ ├── lv_draw_sw_blend.h │ │ │ │ │ ├── lv_draw_sw_dither.c │ │ │ │ │ ├── lv_draw_sw_dither.h │ │ │ │ │ ├── lv_draw_sw_gradient.c │ │ │ │ │ ├── lv_draw_sw_gradient.h │ │ │ │ │ ├── lv_draw_sw_img.c │ │ │ │ │ ├── lv_draw_sw_letter.c │ │ │ │ │ ├── lv_draw_sw_line.c │ │ │ │ │ ├── lv_draw_sw_polygon.c │ │ │ │ │ └── lv_draw_sw_rect.c │ │ │ ├── extra │ │ │ │ ├── README.md │ │ │ │ ├── extra.mk │ │ │ │ ├── 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 │ │ │ │ ├── others │ │ │ │ │ ├── fragment │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lv_fragment.c │ │ │ │ │ │ ├── lv_fragment.h │ │ │ │ │ │ └── lv_fragment_manager.c │ │ │ │ │ ├── gridnav │ │ │ │ │ │ ├── lv_gridnav.c │ │ │ │ │ │ └── lv_gridnav.h │ │ │ │ │ ├── lv_others.h │ │ │ │ │ ├── monkey │ │ │ │ │ │ ├── lv_monkey.c │ │ │ │ │ │ └── lv_monkey.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 │ │ │ ├── gpu │ │ │ │ └── lv_gpu.mk │ │ │ ├── hal │ │ │ │ ├── lv_hal.h │ │ │ │ ├── lv_hal.mk │ │ │ │ ├── lv_hal_disp.c │ │ │ │ ├── lv_hal_disp.h │ │ │ │ ├── lv_hal_indev.c │ │ │ │ ├── lv_hal_indev.h │ │ │ │ ├── lv_hal_tick.c │ │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lvgl.h │ │ │ ├── misc │ │ │ │ ├── lv_anim.c │ │ │ │ ├── lv_anim.h │ │ │ │ ├── lv_anim_timeline.c │ │ │ │ ├── lv_anim_timeline.h │ │ │ │ ├── lv_area.c │ │ │ │ ├── lv_area.h │ │ │ │ ├── lv_assert.h │ │ │ │ ├── lv_async.c │ │ │ │ ├── lv_async.h │ │ │ │ ├── lv_bidi.c │ │ │ │ ├── lv_bidi.h │ │ │ │ ├── lv_color.c │ │ │ │ ├── lv_color.h │ │ │ │ ├── lv_fs.c │ │ │ │ ├── lv_fs.h │ │ │ │ ├── lv_gc.c │ │ │ │ ├── lv_gc.h │ │ │ │ ├── lv_ll.c │ │ │ │ ├── lv_ll.h │ │ │ │ ├── lv_log.c │ │ │ │ ├── lv_log.h │ │ │ │ ├── lv_lru.c │ │ │ │ ├── lv_lru.h │ │ │ │ ├── lv_math.c │ │ │ │ ├── lv_math.h │ │ │ │ ├── lv_mem.c │ │ │ │ ├── lv_mem.h │ │ │ │ ├── lv_misc.mk │ │ │ │ ├── lv_printf.c │ │ │ │ ├── lv_printf.h │ │ │ │ ├── lv_style.c │ │ │ │ ├── lv_style.h │ │ │ │ ├── lv_style_gen.c │ │ │ │ ├── lv_style_gen.h │ │ │ │ ├── lv_templ.c │ │ │ │ ├── lv_templ.h │ │ │ │ ├── lv_timer.c │ │ │ │ ├── lv_timer.h │ │ │ │ ├── lv_tlsf.c │ │ │ │ ├── lv_tlsf.h │ │ │ │ ├── lv_txt.c │ │ │ │ ├── lv_txt.h │ │ │ │ ├── lv_txt_ap.c │ │ │ │ ├── lv_txt_ap.h │ │ │ │ ├── lv_types.h │ │ │ │ ├── lv_utils.c │ │ │ │ └── lv_utils.h │ │ │ └── widgets │ │ │ │ ├── lv_arc.c │ │ │ │ ├── lv_arc.h │ │ │ │ ├── lv_bar.c │ │ │ │ ├── lv_bar.h │ │ │ │ ├── lv_btn.c │ │ │ │ ├── lv_btn.h │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ ├── lv_canvas.c │ │ │ │ ├── lv_canvas.h │ │ │ │ ├── lv_checkbox.c │ │ │ │ ├── lv_checkbox.h │ │ │ │ ├── lv_dropdown.c │ │ │ │ ├── lv_dropdown.h │ │ │ │ ├── lv_img.c │ │ │ │ ├── lv_img.h │ │ │ │ ├── lv_label.c │ │ │ │ ├── lv_label.h │ │ │ │ ├── lv_line.c │ │ │ │ ├── lv_line.h │ │ │ │ ├── lv_objx_templ.c │ │ │ │ ├── lv_objx_templ.h │ │ │ │ ├── lv_roller.c │ │ │ │ ├── lv_roller.h │ │ │ │ ├── lv_slider.c │ │ │ │ ├── lv_slider.h │ │ │ │ ├── lv_switch.c │ │ │ │ ├── lv_switch.h │ │ │ │ ├── lv_table.c │ │ │ │ ├── lv_table.h │ │ │ │ ├── lv_textarea.c │ │ │ │ ├── lv_textarea.h │ │ │ │ └── lv_widgets.mk │ │ │ └── tests │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── config.yml │ │ │ ├── main.py │ │ │ ├── ref_imgs │ │ │ ├── dropdown_1.png │ │ │ ├── dropdown_2.png │ │ │ ├── scr1.png │ │ │ └── table_1.png │ │ │ ├── src │ │ │ ├── lv_test_conf.h │ │ │ ├── lv_test_helpers.h │ │ │ ├── lv_test_indev.c │ │ │ ├── lv_test_indev.h │ │ │ ├── lv_test_init.c │ │ │ ├── lv_test_init.h │ │ │ ├── test_cases │ │ │ │ ├── _test_template.c │ │ │ │ ├── test_arc.c │ │ │ │ ├── test_bar.c │ │ │ │ ├── test_checkbox.c │ │ │ │ ├── test_config.c │ │ │ │ ├── test_demo_stress.c │ │ │ │ ├── test_demo_widgets.c │ │ │ │ ├── test_dropdown.c │ │ │ │ ├── test_event.c │ │ │ │ ├── test_font_loader.c │ │ │ │ ├── test_obj_tree.c │ │ │ │ ├── test_snapshot.c │ │ │ │ ├── test_style.c │ │ │ │ ├── test_switch.c │ │ │ │ ├── test_table.c │ │ │ │ ├── test_textarea.c │ │ │ │ └── test_txt.c │ │ │ └── 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 │ │ ├── App │ │ │ ├── App.cpp │ │ │ ├── App.h │ │ │ ├── Common │ │ │ │ ├── DataProc │ │ │ │ │ ├── DP_Clock.cpp │ │ │ │ │ ├── DP_GPS.cpp │ │ │ │ │ ├── DP_IMU.cpp │ │ │ │ │ ├── DP_LIST.inc │ │ │ │ │ ├── DP_MAG.cpp │ │ │ │ │ ├── DP_MusicPlayer.cpp │ │ │ │ │ ├── DP_Power.cpp │ │ │ │ │ ├── DP_Recorder.cpp │ │ │ │ │ ├── DP_SportStatus.cpp │ │ │ │ │ ├── DP_Storage.cpp │ │ │ │ │ ├── DP_SysConfig.cpp │ │ │ │ │ ├── DP_TrackFilter.cpp │ │ │ │ │ ├── DP_TzConv.cpp │ │ │ │ │ ├── DataProc.cpp │ │ │ │ │ ├── DataProc.h │ │ │ │ │ └── DataProc_Def.h │ │ │ │ └── Music │ │ │ │ │ ├── MusicCode.h │ │ │ │ │ └── ToneMap.h │ │ │ ├── Config │ │ │ │ └── Config.h │ │ │ ├── Pages │ │ │ │ ├── AppFactory.cpp │ │ │ │ ├── AppFactory.h │ │ │ │ ├── Dialplate │ │ │ │ │ ├── Dialplate.cpp │ │ │ │ │ ├── Dialplate.h │ │ │ │ │ ├── DialplateModel.cpp │ │ │ │ │ ├── DialplateModel.h │ │ │ │ │ ├── DialplateView.cpp │ │ │ │ │ └── DialplateView.h │ │ │ │ ├── LiveMap │ │ │ │ │ ├── LiveMap.cpp │ │ │ │ │ ├── LiveMap.h │ │ │ │ │ ├── LiveMapModel.cpp │ │ │ │ │ ├── LiveMapModel.h │ │ │ │ │ ├── LiveMapView.cpp │ │ │ │ │ └── LiveMapView.h │ │ │ │ ├── Page.h │ │ │ │ ├── StartUp │ │ │ │ │ ├── StartUp.cpp │ │ │ │ │ ├── StartUp.h │ │ │ │ │ ├── StartUpModel.cpp │ │ │ │ │ ├── StartUpModel.h │ │ │ │ │ ├── StartUpView.cpp │ │ │ │ │ └── StartUpView.h │ │ │ │ ├── StatusBar │ │ │ │ │ ├── StatusBar.cpp │ │ │ │ │ └── StatusBar.h │ │ │ │ ├── SystemInfos │ │ │ │ │ ├── SystemInfos.cpp │ │ │ │ │ ├── SystemInfos.h │ │ │ │ │ ├── SystemInfosModel.cpp │ │ │ │ │ ├── SystemInfosModel.h │ │ │ │ │ ├── SystemInfosView.cpp │ │ │ │ │ └── SystemInfosView.h │ │ │ │ └── _Template │ │ │ │ │ ├── Template.cpp │ │ │ │ │ ├── Template.h │ │ │ │ │ ├── TemplateModel.cpp │ │ │ │ │ ├── TemplateModel.h │ │ │ │ │ ├── TemplateView.cpp │ │ │ │ │ └── TemplateView.h │ │ │ ├── Resource │ │ │ │ ├── Font │ │ │ │ │ ├── font_agencyb_36.c │ │ │ │ │ ├── font_bahnschrift_13.c │ │ │ │ │ ├── font_bahnschrift_17.c │ │ │ │ │ ├── font_bahnschrift_32.c │ │ │ │ │ └── font_bahnschrift_65.c │ │ │ │ ├── Image │ │ │ │ │ ├── img_src_alarm.c │ │ │ │ │ ├── img_src_battery.c │ │ │ │ │ ├── img_src_battery_info.c │ │ │ │ │ ├── img_src_bicycle.c │ │ │ │ │ ├── img_src_compass.c │ │ │ │ │ ├── img_src_gps_arrow_dark.c │ │ │ │ │ ├── img_src_gps_arrow_default.c │ │ │ │ │ ├── img_src_gps_arrow_light.c │ │ │ │ │ ├── img_src_gps_pin.c │ │ │ │ │ ├── img_src_gyroscope.c │ │ │ │ │ ├── img_src_locate.c │ │ │ │ │ ├── img_src_map_location.c │ │ │ │ │ ├── img_src_menu.c │ │ │ │ │ ├── img_src_origin_point.c │ │ │ │ │ ├── img_src_pause.c │ │ │ │ │ ├── img_src_satellite.c │ │ │ │ │ ├── img_src_sd_card.c │ │ │ │ │ ├── img_src_start.c │ │ │ │ │ ├── img_src_stop.c │ │ │ │ │ ├── img_src_storage.c │ │ │ │ │ ├── img_src_system_info.c │ │ │ │ │ ├── img_src_time_info.c │ │ │ │ │ └── img_src_trip.c │ │ │ │ ├── ResourcePool.cpp │ │ │ │ └── ResourcePool.h │ │ │ ├── Utils │ │ │ │ ├── DataCenter │ │ │ │ │ ├── Account.cpp │ │ │ │ │ ├── Account.h │ │ │ │ │ ├── DataCenter.cpp │ │ │ │ │ ├── DataCenter.h │ │ │ │ │ ├── DataCenterLog.h │ │ │ │ │ └── PingPongBuffer │ │ │ │ │ │ ├── PingPongBuffer.c │ │ │ │ │ │ └── PingPongBuffer.h │ │ │ │ ├── Filters │ │ │ │ │ ├── FilterBase.h │ │ │ │ │ ├── Filters.h │ │ │ │ │ ├── HysteresisFilter.h │ │ │ │ │ ├── LowpassFilter.h │ │ │ │ │ ├── MedianFilter.h │ │ │ │ │ ├── MedianQueueFilter.h │ │ │ │ │ └── SlidingFilter.h │ │ │ │ ├── GPX │ │ │ │ │ ├── Examples │ │ │ │ │ │ └── Static_Track │ │ │ │ │ │ │ └── Static_Track.pde │ │ │ │ │ ├── GPX.cpp │ │ │ │ │ └── GPX.h │ │ │ │ ├── GPX_Parser │ │ │ │ │ ├── GPX_Parser.cpp │ │ │ │ │ └── GPX_Parser.h │ │ │ │ ├── MapConv │ │ │ │ │ ├── GPS_Transform │ │ │ │ │ │ ├── GPS_Transform.c │ │ │ │ │ │ └── GPS_Transform.h │ │ │ │ │ ├── MapConv.cpp │ │ │ │ │ ├── MapConv.h │ │ │ │ │ └── TileSystem │ │ │ │ │ │ ├── TileSystem.cpp │ │ │ │ │ │ └── TileSystem.h │ │ │ │ ├── PageManager │ │ │ │ │ ├── PM_Anim.cpp │ │ │ │ │ ├── PM_Base.cpp │ │ │ │ │ ├── PM_Drag.cpp │ │ │ │ │ ├── PM_Log.h │ │ │ │ │ ├── PM_Router.cpp │ │ │ │ │ ├── PM_State.cpp │ │ │ │ │ ├── PageBase.h │ │ │ │ │ ├── PageFactory.h │ │ │ │ │ └── PageManager.h │ │ │ │ ├── PointContainer │ │ │ │ │ ├── PointContainer.cpp │ │ │ │ │ └── PointContainer.h │ │ │ │ ├── ResourceManager │ │ │ │ │ ├── ResourceManager.cpp │ │ │ │ │ └── ResourceManager.h │ │ │ │ ├── StorageService │ │ │ │ │ ├── StorageService.cpp │ │ │ │ │ └── StorageService.h │ │ │ │ ├── TileConv │ │ │ │ │ ├── TileConv.cpp │ │ │ │ │ └── TileConv.h │ │ │ │ ├── Time │ │ │ │ │ ├── DateStrings.cpp │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── Time.cpp │ │ │ │ │ ├── Time.h │ │ │ │ │ ├── TimeLib.h │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── Processing │ │ │ │ │ │ │ └── SyncArduinoClock │ │ │ │ │ │ │ │ ├── SyncArduinoClock.pde │ │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── TimeArduinoDue │ │ │ │ │ │ │ └── TimeArduinoDue.ino │ │ │ │ │ │ ├── TimeGPS │ │ │ │ │ │ │ └── TimeGPS.ino │ │ │ │ │ │ ├── TimeNTP │ │ │ │ │ │ │ └── TimeNTP.ino │ │ │ │ │ │ ├── TimeNTP_ESP8266WiFi │ │ │ │ │ │ │ └── TimeNTP_ESP8266WiFi.ino │ │ │ │ │ │ ├── TimeRTC │ │ │ │ │ │ │ └── TimeRTC.ino │ │ │ │ │ │ ├── TimeRTCLog │ │ │ │ │ │ │ └── TimeRTCLog.ino │ │ │ │ │ │ ├── TimeRTCSet │ │ │ │ │ │ │ └── TimeRTCSet.ino │ │ │ │ │ │ ├── TimeSerial │ │ │ │ │ │ │ └── TimeSerial.ino │ │ │ │ │ │ ├── TimeSerialDateStrings │ │ │ │ │ │ │ └── TimeSerialDateStrings.ino │ │ │ │ │ │ └── TimeTeensy3 │ │ │ │ │ │ │ └── TimeTeensy3.ino │ │ │ │ │ ├── keywords.txt │ │ │ │ │ ├── library.json │ │ │ │ │ └── library.properties │ │ │ │ ├── TonePlayer │ │ │ │ │ ├── TonePlayer.cpp │ │ │ │ │ └── TonePlayer.h │ │ │ │ ├── TrackFilter │ │ │ │ │ ├── TrackFilter.h │ │ │ │ │ ├── TrackLineFilter.cpp │ │ │ │ │ ├── TrackLineFilter.h │ │ │ │ │ ├── TrackPointFilter.cpp │ │ │ │ │ └── TrackPointFilter.h │ │ │ │ ├── lv_allocator │ │ │ │ │ └── lv_allocator.h │ │ │ │ ├── lv_anim_label │ │ │ │ │ ├── lv_anim_label.c │ │ │ │ │ └── lv_anim_label.h │ │ │ │ ├── lv_ext │ │ │ │ │ ├── lv_anim_timeline_wrapper.c │ │ │ │ │ ├── lv_anim_timeline_wrapper.h │ │ │ │ │ ├── lv_obj_ext_func.cpp │ │ │ │ │ └── lv_obj_ext_func.h │ │ │ │ ├── lv_img_png │ │ │ │ │ ├── PNGdec │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── 1bpp_transparent_oled │ │ │ │ │ │ │ │ ├── 1bpp_transparent_oled.ino │ │ │ │ │ │ │ │ └── octocat_1bpp.h │ │ │ │ │ │ │ ├── m5stickc_plus_test │ │ │ │ │ │ │ │ └── m5logosmall.h │ │ │ │ │ │ │ ├── png_benchmark │ │ │ │ │ │ │ │ ├── octocat_32bpp.h │ │ │ │ │ │ │ │ ├── octocat_4bpp.h │ │ │ │ │ │ │ │ ├── octocat_8bpp.h │ │ │ │ │ │ │ │ └── png_benchmark.ino │ │ │ │ │ │ │ ├── png_transparency │ │ │ │ │ │ │ │ ├── octocat_4bpp.h │ │ │ │ │ │ │ │ └── png_transparency.ino │ │ │ │ │ │ │ └── sdcard_slideshow │ │ │ │ │ │ │ │ └── sdcard_slideshow.ino │ │ │ │ │ │ ├── library.properties │ │ │ │ │ │ ├── linux │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ ├── perf_small.png │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── PNGdec.cpp │ │ │ │ │ │ │ ├── PNGdec.h │ │ │ │ │ │ │ ├── adler32.c │ │ │ │ │ │ │ ├── crc32.c │ │ │ │ │ │ │ ├── crc32.h │ │ │ │ │ │ │ ├── infback.c │ │ │ │ │ │ │ ├── inffast.c │ │ │ │ │ │ │ ├── inffast.h │ │ │ │ │ │ │ ├── inffixed.h │ │ │ │ │ │ │ ├── inflate.c │ │ │ │ │ │ │ ├── inflate.h │ │ │ │ │ │ │ ├── inftrees.c │ │ │ │ │ │ │ ├── inftrees.h │ │ │ │ │ │ │ ├── png.inl │ │ │ │ │ │ │ ├── zconf.h │ │ │ │ │ │ │ ├── zlib.h │ │ │ │ │ │ │ ├── zutil.c │ │ │ │ │ │ │ └── zutil.h │ │ │ │ │ ├── lv_img_png.cpp │ │ │ │ │ └── lv_img_png.h │ │ │ │ ├── lv_poly_line │ │ │ │ │ ├── lv_poly_line.cpp │ │ │ │ │ └── lv_poly_line.h │ │ │ │ └── new │ │ │ │ │ └── new.cpp │ │ │ └── Version.h │ │ ├── HAL │ │ │ ├── CommonMacro.h │ │ │ ├── HAL.cpp │ │ │ ├── HAL.h │ │ │ ├── HAL_AHRS.cpp │ │ │ ├── HAL_Audio.cpp │ │ │ ├── HAL_Backlight.cpp │ │ │ ├── HAL_Buzz.cpp │ │ │ ├── HAL_Clock.cpp │ │ │ ├── HAL_Def.h │ │ │ ├── HAL_Encoder.cpp │ │ │ ├── HAL_GPS.cpp │ │ │ ├── HAL_I2C_Scan.cpp │ │ │ ├── HAL_IMU.cpp │ │ │ ├── HAL_MAG.cpp │ │ │ ├── HAL_Memory.cpp │ │ │ ├── HAL_Power.cpp │ │ │ ├── HAL_SD_CARD.cpp │ │ │ └── rt_sys.cpp │ │ ├── Port │ │ │ ├── Display.cpp │ │ │ ├── Display.h │ │ │ └── lv_port │ │ │ │ ├── lv_port_disp.cpp │ │ │ │ ├── lv_port_fatfs.cpp │ │ │ │ └── lv_port_indev.cpp │ │ └── main.cpp │ └── test │ │ └── README │ └── README.md ├── 3.Docs ├── 2.0IPS插接22pin-ST7789技术资料-IF05.zip ├── ATGM336H.pdf └── esp32-pico-d4_datasheet_cn.pdf ├── 4.Model ├── KeyShot │ ├── Peak-T2.0_3.bip │ └── Peak-T2.28.png ├── Peak-T2.0_Shell.f3d ├── README.md └── STL │ ├── 底层.stl │ └── 顶层.stl ├── 5.Pics ├── Peak-T2.28.png ├── Peak-T2.28_s.png ├── pcb.png ├── pcb2.png └── sch.png ├── LICENSE └── README.md /1.Hardware/Peak-T2.0_Gerber_PCB2_20220330120510.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/1.Hardware/Peak-T2.0_Gerber_PCB2_20220330120510.zip -------------------------------------------------------------------------------- /1.Hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/1.Hardware/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.gitignore -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/.piopm -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/User_Setup.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/library.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TinyGPSPlus/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TinyGPSPlus/.piopm -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TinyGPSPlus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/TinyGPSPlus/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_conf.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_examples/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.o 2 | objs 3 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_examples/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_examples/.piopm -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_examples/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_examples/lv_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_examples/lv_demo.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lv_examples/lv_demo.mk: -------------------------------------------------------------------------------- 1 | CSRCS += $(shell find -L $(LVGL_DIR)/lv_demos -name "*.c") 2 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/.codecov.yml -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/.editorconfig -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/.gitignore -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/.piopm -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/Kconfig -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/SConscript -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/component.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/examples/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/examples/header.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/idf_component.yml -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/library.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/library.properties -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/lvgl.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/lvgl.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | CHANGELOG_LAST.md 2 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/scripts/release/commits.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/extra/extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/extra/extra.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/gpu/lv_gpu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/gpu/lv_gpu.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *_Runner.c 3 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/tests/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/tests/config.yml -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/tests/main.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.pio/libdeps/pico32/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/.vscode/extensions.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/include/README -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/ButtonEvent/ButtonEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/ButtonEvent/ButtonEvent.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/ButtonEvent/ButtonEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/ButtonEvent/ButtonEvent.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/ButtonEvent/EventType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/ButtonEvent/EventType.inc -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/M5Touch/M5Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/M5Touch/M5Touch.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/M5Touch/M5Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/M5Touch/M5Touch.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/M5Touch/PointAndZone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/M5Touch/PointAndZone.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/M5Touch/PointAndZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/M5Touch/PointAndZone.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/MillisTaskManager/MillisTaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/MillisTaskManager/MillisTaskManager.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/MillisTaskManager/MillisTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/MillisTaskManager/MillisTaskManager.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/Music/MusicCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/Music/MusicCode.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/Music/ToneMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/Music/ToneMap.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/README -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/TonePlayer/TonePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/TonePlayer/TonePlayer.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/TonePlayer/TonePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/lib/TonePlayer/TonePlayer.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/platformio.ini -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/CommonMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/CommonMacro.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/Config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/Config/Config.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Audio.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Backlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Backlight.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Buzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Buzz.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Clock.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Def.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Display.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Encoder.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_GPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_GPS.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_I2C_Scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_I2C_Scan.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_IMU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_IMU.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_Power.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_SD_CARD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_SD_CARD.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_TouchScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/HAL/HAL_TouchScreen.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainModel.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainModel.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainPage.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainPage.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainView.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/MainView.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/ui_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/ui_helpers.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/ui_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Main/ui_helpers.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Pages/Pages.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/PeakTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/PeakTrack.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/PeakTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/PeakTrack.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Resources/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/PeakTrack/Resources/Resources.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/Port/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/Port/Display.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/Port/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/Port/Display.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/Port/lv_port/lv_port_disp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/Port/lv_port/lv_port_disp.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/Port/lv_port/lv_port_indev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/Port/lv_port/lv_port_indev.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/src/main.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak-T2.0_Arduino-fw/test/README -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | CMakeListsPrivate.txt 3 | cmake-build-*/ 4 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/.vscode/extensions.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/.vscode/launch.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/Tools/addr2line.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/Tools/addr2line.exe -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/include/README -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/ArduinoJson.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/CHANGELOG.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/CONTRIBUTING.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/LICENSE.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/SUPPORT.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/appveyor.yml -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/banner.svg -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := src 2 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/extras/ci/arduino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/extras/ci/arduino.sh -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/extras/ci/particle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/extras/ci/particle.sh -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/extras/fuzzing/json_seed_corpus/EmptyArray.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/extras/fuzzing/json_seed_corpus/EmptyObject.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/extras/fuzzing/msgpack_seed_corpus/fixint_positive: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/extras/particle/project.properties: -------------------------------------------------------------------------------- 1 | name=ArduinoJsonCI 2 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/library.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/library.properties -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/src/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/src/ArduinoJson.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/src/ArduinoJson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/src/ArduinoJson.hpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ArduinoJson/src/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ButtonEvent/ButtonEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ButtonEvent/ButtonEvent.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ButtonEvent/ButtonEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ButtonEvent/ButtonEvent.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ButtonEvent/EventType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/ButtonEvent/EventType.inc -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/README -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/examples/SD_Test/SD_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/examples/SD_Test/SD_Test.ino -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/examples/SD_time/SD_time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/examples/SD_time/SD_time.ino -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/library.properties -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/SD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/SD.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/SD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/SD.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/sd_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/sd_defines.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/sd_diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/sd_diskio.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/sd_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/sd_diskio.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/sd_diskio_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SD/src/sd_diskio_crc.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SPI/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SPI/library.properties -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/SPI/src/SPI.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Button.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Button.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Smooth_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Smooth_font.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Sprite.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Sprite.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Touch.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Extensions/Touch.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font32rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font32rle.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font32rle.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font64rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font64rle.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font64rle.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font72rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font72rle.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font72rle.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font72x53rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font72x53rle.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font72x53rle.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font7srle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font7srle.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/Font7srle.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/GFXFF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/GFXFF/license.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/GFXFF/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/GFXFF/print.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Fonts/glcdfont.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Tools/Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Tools/Images/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Tools/Images/star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Tools/Images/star.bmp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Tools/RPi_TFT_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/Tools/RPi_TFT_mod.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/User_Setup_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/User_Setup_Select.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/library.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/library.properties -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/.codecov.yml -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/.editorconfig -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/.gitignore -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/Kconfig -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/README_zh.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/SConscript -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/component.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/benchmark/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/lv_demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/lv_demos.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/lv_demos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/lv_demos.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/music/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/music/lv_demo_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/music/lv_demo_music.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/music/lv_demo_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/music/lv_demo_music.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/music/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/music/screenshot1.gif -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/stress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/stress/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/stress/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/stress/screenshot1.gif -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/stress/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/demos/stress/screenshot1.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/CHANGELOG.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/ROADMAP.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_ext/lv_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_ext/lv_example.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/css/custom.css -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_1.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_2.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_3.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_4.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_5.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_static/img/home_6.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_templates/layout.html -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/_templates/page.html -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/build.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/conf.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/example_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/example_list.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/favicon.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/arduino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/arduino.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/cmake.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/nuttx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/nuttx.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/nxp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/nxp.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/stm32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/get-started/stm32.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/header.rst -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/intro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/intro/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/layouts/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/layouts/flex.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/layouts/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/layouts/grid.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/layouts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/layouts/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/bmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/bmp.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/ffmpeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/ffmpeg.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/freetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/freetype.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/fsdrv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/fsdrv.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/gif.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/png.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/png.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/qrcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/qrcode.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/rlottie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/rlottie.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/sjpg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/libs/sjpg.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/logo_lvgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/logo_lvgl.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/align.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/anim-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/anim-timeline.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/bidi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/bidi.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/boxmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/boxmodel.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/btn_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/btn_example.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/codeblocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/codeblocks.jpg -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/eclipse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/eclipse.jpg -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/layers.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/par_child1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/par_child1.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/par_child2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/par_child2.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/par_child3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/par_child3.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/platformio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/platformio.jpg -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/qtcreator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/qtcreator.jpg -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/symbols.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/sys.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/visualstudio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/misc/visualstudio.jpg -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/fragment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/fragment.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/gridnav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/gridnav.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/monkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/monkey.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/others/snapshot.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/animation.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/color.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/coords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/coords.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/display.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/drawing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/drawing.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/event.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/file-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/file-system.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/font.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/image.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/indev.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/layer.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/new_widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/new_widget.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/object.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/scroll.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/style-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/style-props.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/style.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/overview/timer.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/display.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/gpu.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/indev.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/log.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/os.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/project.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/sleep.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/task-handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/task-handler.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/tick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/porting/tick.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/requirements.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/arc.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/bar.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/btn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/btn.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/canvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/canvas.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/img.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/img.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/label.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/line.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/roller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/roller.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/slider.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/switch.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/core/table.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/chart.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/imgbtn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/imgbtn.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/led.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/led.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/list.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/menu.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/meter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/meter.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/msgbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/msgbox.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/span.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/extra/win.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/index.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/docs/widgets/obj.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/env_support/cmake/esp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/env_support/cmake/esp.cmake -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/env_support/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/anim/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/anim/index.rst -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/animimg001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/animimg001.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/animimg002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/animimg002.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/animimg003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/animimg003.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/img_hand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/img_hand.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/img_star.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/img_star.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/img_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/assets/img_star.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/event/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/event/index.rst -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/examples.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/header.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/libs/gif/bulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/libs/gif/bulb.gif -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/libs/png/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/libs/png/wink.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/lv_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/lv_examples.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/scroll/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/scroll/index.rst -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/styles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/styles/index.rst -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/test_ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/examples/test_ex.sh -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/idf_component.yml -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/library.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/library.properties -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/lv_conf.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/lvgl.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/lvgl.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | CHANGELOG_LAST.md 2 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/changelog_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/changelog_gen.sh -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/code-format.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/code-format.cfg -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/code-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/code-format.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/cppcheck_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/cppcheck_run.sh -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/filetohex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/filetohex.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/find_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/find_version.sh -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/genexamplelist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/genexamplelist.sh -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/infer_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/infer_run.sh -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/jpg_to_sjpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/jpg_to_sjpg.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/style_api_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/scripts/style_api_gen.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_core.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_event.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_event.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_group.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_group.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_indev.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_indev.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_indev_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_indev_scroll.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_indev_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_indev_scroll.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_class.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_class.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_draw.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_draw.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_pos.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_pos.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_scroll.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_scroll.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_style.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_style.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_tree.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_obj_tree.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_theme.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/core/lv_theme.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_arc.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_arc.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_img.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_img.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_label.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_label.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_line.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_line.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_mask.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_mask.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_rect.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_draw_rect.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_buf.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_buf.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_cache.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_cache.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_decoder.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/lv_img_decoder.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sdl/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sdl/lv_draw_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sdl/lv_draw_sdl.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sdl/lv_draw_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sdl/lv_draw_sdl.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sw/lv_draw_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sw/lv_draw_sw.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sw/lv_draw_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sw/lv_draw_sw.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sw/lv_draw_sw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/draw/sw/lv_draw_sw.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/extra.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/libs/lv_libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/libs/lv_libs.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/lv_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/lv_extra.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/lv_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/lv_extra.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/extra/others/fragment/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/korean.ttf -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font_fmt_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font_fmt_txt.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font_fmt_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font_fmt_txt.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font_loader.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_font_loader.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_symbol_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/font/lv_symbol_def.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/gpu/lv_gpu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/gpu/lv_gpu.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_disp.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_disp.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_indev.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_indev.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_tick.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/hal/lv_hal_tick.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_assert.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_async.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_async.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_color.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_color.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_lru.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_lru.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_misc.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_printf.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_printf.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_style.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_style.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_style_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_style_gen.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_style_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_style_gen.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_templ.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_templ.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_timer.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_timer.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_txt_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_txt_ap.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_txt_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_txt_ap.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_types.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_utils.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/misc/lv_utils.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_arc.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_arc.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_bar.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_bar.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_btn.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_btn.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_btnmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_btnmatrix.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_btnmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_btnmatrix.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_canvas.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_canvas.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_checkbox.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_checkbox.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_dropdown.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_dropdown.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_img.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_img.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_label.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_label.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_line.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_line.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_roller.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_roller.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_slider.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_slider.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_switch.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_switch.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_table.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_table.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_textarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_textarea.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_textarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_textarea.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_widgets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/src/widgets/lv_widgets.mk -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *_Runner.c 3 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/CMakeLists.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/README.md -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/config.yml -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/main.py -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/ref_imgs/scr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/ref_imgs/scr1.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/ref_imgs/table_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/ref_imgs/table_1.png -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_conf.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_indev.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_indev.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_init.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/src/lv_test_init.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/unity/run_test.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/unity/run_test.erb -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/unity/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/unity/unity.c -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/unity/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/lib/lvgl/tests/unity/unity.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/platformio.ini -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/App.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/App.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DP_GPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DP_GPS.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DP_IMU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DP_IMU.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DP_LIST.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DP_LIST.inc -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DP_MAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DP_MAG.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DataProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/DataProc/DataProc.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/Music/MusicCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/Music/MusicCode.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/Music/ToneMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Common/Music/ToneMap.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Config/Config.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/AppFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/AppFactory.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/AppFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/AppFactory.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/Dialplate/Dialplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/Dialplate/Dialplate.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/LiveMap/LiveMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/LiveMap/LiveMap.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/LiveMap/LiveMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/LiveMap/LiveMap.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/LiveMap/LiveMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/LiveMap/LiveMapView.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/Page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/Page.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/StartUp/StartUp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/StartUp/StartUp.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/StartUp/StartUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/StartUp/StartUp.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/StartUp/StartUpView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/StartUp/StartUpView.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/StatusBar/StatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/StatusBar/StatusBar.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/_Template/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Pages/_Template/Template.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Resource/ResourcePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Resource/ResourcePool.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Resource/ResourcePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Resource/ResourcePool.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/DataCenter/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/DataCenter/Account.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Filters/FilterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Filters/FilterBase.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Filters/Filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Filters/Filters.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/GPX/GPX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/GPX/GPX.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/GPX/GPX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/GPX/GPX.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/MapConv/MapConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/MapConv/MapConv.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/MapConv/MapConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/MapConv/MapConv.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/PageManager/PM_Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/PageManager/PM_Log.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/TileConv/TileConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/TileConv/TileConv.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/TileConv/TileConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/TileConv/TileConv.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/DateStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/DateStrings.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/Readme.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/Time.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/Time.h: -------------------------------------------------------------------------------- 1 | #include "TimeLib.h" 2 | -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/TimeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/TimeLib.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/keywords.txt -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/Time/library.json -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/new/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Utils/new/new.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/App/Version.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/CommonMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/CommonMacro.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_AHRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_AHRS.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Audio.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Backlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Backlight.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Buzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Buzz.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Clock.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Def.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Encoder.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_GPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_GPS.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_I2C_Scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_I2C_Scan.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_IMU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_IMU.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_MAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_MAG.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Memory.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_Power.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_SD_CARD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/HAL_SD_CARD.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/rt_sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/HAL/rt_sys.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/Display.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/Display.h -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/lv_port/lv_port_disp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/lv_port/lv_port_disp.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/lv_port/lv_port_fatfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/lv_port/lv_port_fatfs.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/lv_port/lv_port_indev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/Port/lv_port/lv_port_indev.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/src/main.cpp -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/Peak_ESP32_X-Track_fw_T2.0/test/README -------------------------------------------------------------------------------- /2.Firmware/PlatformIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/2.Firmware/PlatformIO/README.md -------------------------------------------------------------------------------- /3.Docs/2.0IPS插接22pin-ST7789技术资料-IF05.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/3.Docs/2.0IPS插接22pin-ST7789技术资料-IF05.zip -------------------------------------------------------------------------------- /3.Docs/ATGM336H.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/3.Docs/ATGM336H.pdf -------------------------------------------------------------------------------- /3.Docs/esp32-pico-d4_datasheet_cn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/3.Docs/esp32-pico-d4_datasheet_cn.pdf -------------------------------------------------------------------------------- /4.Model/KeyShot/Peak-T2.0_3.bip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/4.Model/KeyShot/Peak-T2.0_3.bip -------------------------------------------------------------------------------- /4.Model/KeyShot/Peak-T2.28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/4.Model/KeyShot/Peak-T2.28.png -------------------------------------------------------------------------------- /4.Model/Peak-T2.0_Shell.f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/4.Model/Peak-T2.0_Shell.f3d -------------------------------------------------------------------------------- /4.Model/README.md: -------------------------------------------------------------------------------- 1 | 外壳背后的两个是码表的固定孔,如不需要可以删去 -------------------------------------------------------------------------------- /4.Model/STL/底层.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/4.Model/STL/底层.stl -------------------------------------------------------------------------------- /4.Model/STL/顶层.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/4.Model/STL/顶层.stl -------------------------------------------------------------------------------- /5.Pics/Peak-T2.28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/5.Pics/Peak-T2.28.png -------------------------------------------------------------------------------- /5.Pics/Peak-T2.28_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/5.Pics/Peak-T2.28_s.png -------------------------------------------------------------------------------- /5.Pics/pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/5.Pics/pcb.png -------------------------------------------------------------------------------- /5.Pics/pcb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/5.Pics/pcb2.png -------------------------------------------------------------------------------- /5.Pics/sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/5.Pics/sch.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forairaaaaa/Peak-T2/HEAD/README.md --------------------------------------------------------------------------------