├── .gitignore ├── 3d_file ├── README.md ├── T-Display.step ├── prt0003_23.stl └── prt0005_14(2).stl ├── LICENSE ├── README.MD ├── 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 │ ├── HX8357D_Defines.h │ ├── HX8357D_Init.h │ ├── HX8357D_Rotation.h │ ├── ILI9163_Defines.h │ ├── ILI9163_Init.h │ ├── ILI9163_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.h ├── 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_ILI9341.h │ ├── Setup3_ILI9163.h │ ├── Setup43_ST7735.h │ ├── Setup44_TTGO_CameraPlus.h │ ├── Setup45_TTGO_T_Watch.h │ ├── Setup4_S6D02A1.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 │ ├── FactoryTest │ │ ├── Button2.cpp │ │ ├── Button2.h │ │ ├── FactoryTest.ino │ │ └── bmp.h │ ├── Generic │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 ├── eagle └── TTGO-TDisplay.lbr ├── firmware ├── README.MD ├── esp32-1.png ├── esp32-2.png └── firmware.bin ├── image ├── SD.jpg ├── image4.jpg └── pinmap.jpg ├── kicad └── TTGO_T_Display │ ├── README.MD │ ├── footprints │ └── TTGO_T_Display.pretty │ │ └── TTGO-T-Display.kicad_mod │ └── symbols │ └── TTGO_T_Display.kicad_sym └── schematic └── ESP32-TFT(6-26).pdf /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .vscode 3 | other -------------------------------------------------------------------------------- /3d_file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/3d_file/README.md -------------------------------------------------------------------------------- /3d_file/T-Display.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/3d_file/T-Display.step -------------------------------------------------------------------------------- /3d_file/prt0003_23.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/3d_file/prt0003_23.stl -------------------------------------------------------------------------------- /3d_file/prt0005_14(2).stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/3d_file/prt0005_14(2).stl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/README.MD -------------------------------------------------------------------------------- /TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /TFT_eSPI/Extensions/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Extensions/Button.cpp -------------------------------------------------------------------------------- /TFT_eSPI/Extensions/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Extensions/Button.h -------------------------------------------------------------------------------- /TFT_eSPI/Extensions/Smooth_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Extensions/Smooth_font.cpp -------------------------------------------------------------------------------- /TFT_eSPI/Extensions/Smooth_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Extensions/Smooth_font.h -------------------------------------------------------------------------------- /TFT_eSPI/Extensions/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Extensions/Sprite.cpp -------------------------------------------------------------------------------- /TFT_eSPI/Extensions/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Extensions/Sprite.h -------------------------------------------------------------------------------- /TFT_eSPI/Extensions/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Extensions/Touch.cpp -------------------------------------------------------------------------------- /TFT_eSPI/Extensions/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Extensions/Touch.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Custom/Orbitron_Light_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Custom/Orbitron_Light_24.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Custom/Orbitron_Light_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Custom/Orbitron_Light_32.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Custom/Satisfy_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Custom/Satisfy_24.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Custom/Yellowtail_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Custom/Yellowtail_32.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font32rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font32rle.c -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font32rle.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font64rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font64rle.c -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font64rle.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font72rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font72rle.c -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font72rle.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font72x53rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font72x53rle.c -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font72x53rle.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font7srle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font7srle.c -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/Font7srle.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoBold12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoBold18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoBold24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoBoldOblique12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoBoldOblique18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoBoldOblique24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoBoldOblique9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoOblique12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoOblique18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoOblique24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeMonoOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeMonoOblique9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansBold12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansBold18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansBold24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansBoldOblique12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansBoldOblique18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansBoldOblique24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansBoldOblique9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansOblique12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansOblique18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansOblique24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSansOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSansOblique9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifBold12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifBold18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifBold24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifBold9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifBoldItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifBoldItalic12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifBoldItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifBoldItalic18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifBoldItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifBoldItalic24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifBoldItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifBoldItalic9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifItalic12pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifItalic18pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifItalic24pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/FreeSerifItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/FreeSerifItalic9pt7b.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/TomThumb.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/gfxfont.h -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/license.txt -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/GFXFF/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/GFXFF/print.txt -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/TrueType/Not_yet_supported.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/TrueType/Not_yet_supported.txt -------------------------------------------------------------------------------- /TFT_eSPI/Fonts/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Fonts/glcdfont.c -------------------------------------------------------------------------------- /TFT_eSPI/Processors/TFT_eSPI_ESP32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Processors/TFT_eSPI_ESP32.c -------------------------------------------------------------------------------- /TFT_eSPI/Processors/TFT_eSPI_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Processors/TFT_eSPI_ESP32.h -------------------------------------------------------------------------------- /TFT_eSPI/Processors/TFT_eSPI_ESP8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c -------------------------------------------------------------------------------- /TFT_eSPI/Processors/TFT_eSPI_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h -------------------------------------------------------------------------------- /TFT_eSPI/Processors/TFT_eSPI_Generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Processors/TFT_eSPI_Generic.c -------------------------------------------------------------------------------- /TFT_eSPI/Processors/TFT_eSPI_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Processors/TFT_eSPI_Generic.h -------------------------------------------------------------------------------- /TFT_eSPI/Processors/TFT_eSPI_STM32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Processors/TFT_eSPI_STM32.c -------------------------------------------------------------------------------- /TFT_eSPI/Processors/TFT_eSPI_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Processors/TFT_eSPI_STM32.h -------------------------------------------------------------------------------- /TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/README.md -------------------------------------------------------------------------------- /TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/EPD_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/EPD_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/HX8357D_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/HX8357D_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/HX8357D_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/HX8357D_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/HX8357D_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9163_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9163_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9163_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9163_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9163_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9341_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9341_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9341_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9341_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9341_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9481_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9481_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9481_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9481_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9481_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9486_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9486_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9486_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9486_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9486_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9488_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9488_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9488_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9488_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ILI9488_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ILI9488_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/R61581_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/R61581_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/R61581_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/R61581_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/R61581_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/R61581_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/RM68140_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/RM68140_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/RM68140_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/RM68140_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/RM68140_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/RM68140_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/S6D02A1_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/S6D02A1_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/S6D02A1_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/S6D02A1_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/SSD1963_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/SSD1963_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/SSD1963_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/SSD1963_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/SSD1963_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/SSD1963_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7735_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7735_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7735_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7735_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7735_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7735_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7789_2_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7789_2_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7789_2_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7789_2_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7789_2_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7789_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7789_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7789_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7789_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7789_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7789_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7796_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7796_Defines.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7796_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7796_Init.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_Drivers/ST7796_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_Drivers/ST7796_Rotation.h -------------------------------------------------------------------------------- /TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /TFT_eSPI/Tools/Create_Smooth_Font/Create_font/Create_font.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/Create_Smooth_Font/Create_font/Create_font.pde -------------------------------------------------------------------------------- /TFT_eSPI/Tools/Create_Smooth_Font/Create_font/FontFiles/Final-Frontier28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/Create_Smooth_Font/Create_font/FontFiles/Final-Frontier28.vlw -------------------------------------------------------------------------------- /TFT_eSPI/Tools/Create_Smooth_Font/Create_font/data/Final-Frontier.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/Create_Smooth_Font/Create_font/data/Final-Frontier.ttf -------------------------------------------------------------------------------- /TFT_eSPI/Tools/ESP32 UNO board mod/ESP32 UNO board mod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/ESP32 UNO board mod/ESP32 UNO board mod.jpg -------------------------------------------------------------------------------- /TFT_eSPI/Tools/ESP32 UNO board mod/ESP32 UNO board pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/ESP32 UNO board mod/ESP32 UNO board pinout.jpg -------------------------------------------------------------------------------- /TFT_eSPI/Tools/Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/Images/README.md -------------------------------------------------------------------------------- /TFT_eSPI/Tools/Images/bmp2array4bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/Images/bmp2array4bit.py -------------------------------------------------------------------------------- /TFT_eSPI/Tools/Images/star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/Images/star.bmp -------------------------------------------------------------------------------- /TFT_eSPI/Tools/PlatformIO/Configuring options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/PlatformIO/Configuring options.txt -------------------------------------------------------------------------------- /TFT_eSPI/Tools/RPi_TFT_Connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/RPi_TFT_Connections.png -------------------------------------------------------------------------------- /TFT_eSPI/Tools/RPi_TFT_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/RPi_TFT_mod.png -------------------------------------------------------------------------------- /TFT_eSPI/Tools/Screenshot_client/Screenshot_client.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/Tools/Screenshot_client/Screenshot_client.pde -------------------------------------------------------------------------------- /TFT_eSPI/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setup.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setup_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setup_Select.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup10_RPi_touch_ILI9486.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup10_RPi_touch_ILI9486.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup11_RPi_touch_ILI9486.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup11_RPi_touch_ILI9486.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup12_M5Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup12_M5Stack.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup135_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup135_ST7789.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup13_ILI9481_Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup13_ILI9481_Parallel.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup14_ILI9341_Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup14_ILI9341_Parallel.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup15_HX8357D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup15_HX8357D.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup16_ILI9488_Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup16_ILI9488_Parallel.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup17_ePaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup17_ePaper.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup18_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup18_ST7789.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup19_RM68140_Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup19_RM68140_Parallel.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup1_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup1_ILI9341.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup20_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup20_ILI9488.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup21_ILI9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup21_ILI9488.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup22_TTGO_T4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup22_TTGO_T4.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup22_TTGO_T4_v1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup22_TTGO_T4_v1.3.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup23_TTGO_TM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup23_TTGO_TM.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup24_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup24_ST7789.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup25_TTGO_T_Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup25_TTGO_T_Display.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup26_TTGO_T_Wristband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup26_TTGO_T_Wristband.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup27_RPi_ST7796_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup27_RPi_ST7796_ESP32.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup28_RPi_ST7796_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup28_RPi_ST7796_ESP8266.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup29_ILI9341_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup29_ILI9341_STM32.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup2_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup2_ST7735.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup30_ILI9341_Parallel_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup30_ILI9341_Parallel_STM32.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup31_ST7796_Parallel_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup31_ST7796_Parallel_STM32.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup32_ILI9341_STM32F103.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup32_ILI9341_STM32F103.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup33_RPi_ILI9486_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup33_RPi_ILI9486_STM32.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup34_ILI9481_Parallel_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup34_ILI9481_Parallel_STM32.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup35_ILI9341_STM32_Port_Bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup35_ILI9341_STM32_Port_Bus.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup36_RPi_touch_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup36_RPi_touch_ILI9341.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup3_ILI9163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup3_ILI9163.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup43_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup43_ST7735.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup44_TTGO_CameraPlus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup44_TTGO_CameraPlus.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup45_TTGO_T_Watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup45_TTGO_T_Watch.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup4_S6D02A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup4_S6D02A1.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup5_RPi_ILI9486.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup5_RPi_ILI9486.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup6_RPi_Wr_ILI9486.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup6_RPi_Wr_ILI9486.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup7_ST7735_128x128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup7_ST7735_128x128.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup8_ILI9163_128x128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup8_ILI9163_128x128.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/Setup9_ST7735_Overlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/Setup9_ST7735_Overlap.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/SetupX_Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/SetupX_Template.h -------------------------------------------------------------------------------- /TFT_eSPI/User_Setups/User_Custom_Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/User_Setups/User_Custom_Fonts.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/Arduino_Life/Arduino_Life.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/Arduino_Life/Arduino_Life.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/Pong_v3/Pong_v3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/Pong_v3/Pong_v3.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/RLE_Font_test/RLE_Font_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/RLE_Font_test/RLE_Font_test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_Char_times/TFT_Char_times.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_Char_times/TFT_Char_times.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_Clock/TFT_Clock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_Clock/TFT_Clock.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_Clock_Digital/TFT_Clock_Digital.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_Clock_Digital/TFT_Clock_Digital.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_Ellipse/TFT_Ellipse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_Ellipse/TFT_Ellipse.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_Meter_5/TFT_Meter_5.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_Meter_5/TFT_Meter_5.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_Print_Test/TFT_Print_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_Print_Test/TFT_Print_Test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_Rainbow/TFT_Rainbow.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_Rainbow/TFT_Rainbow.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_flash_jpg/TFT_flash_jpg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_flash_jpg/TFT_flash_jpg.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_flash_jpg/jpeg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_flash_jpg/jpeg1.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_flash_jpg/jpeg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_flash_jpg/jpeg2.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_flash_jpg/jpeg3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_flash_jpg/jpeg3.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_flash_jpg/jpeg4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_flash_jpg/jpeg4.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_graphicstest_PDQ3/TFT_graphicstest_PDQ3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_graphicstest_PDQ3/TFT_graphicstest_PDQ3.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/TFT_graphicstest_small/TFT_graphicstest_small.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/TFT_graphicstest_small/TFT_graphicstest_small.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/160 x 128/UTFT_demo_fast/UTFT_demo_fast.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/160 x 128/UTFT_demo_fast/UTFT_demo_fast.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/All_Free_Fonts_Demo/All_Free_Fonts_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/All_Free_Fonts_Demo/All_Free_Fonts_Demo.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/All_Free_Fonts_Demo/Free_Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/All_Free_Fonts_Demo/Free_Fonts.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/Cellular_Automata/Cellular_Automata.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/Cellular_Automata/Cellular_Automata.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/Free_Font_Demo/Free_Font_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/Free_Font_Demo/Free_Font_Demo.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/Free_Font_Demo/Free_Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/Free_Font_Demo/Free_Fonts.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/Keypad_240x320/Keypad_240x320.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/Keypad_240x320/Keypad_240x320.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/RLE_Font_test/RLE_Font_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/RLE_Font_test/RLE_Font_test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/Read_ID_bitbash/Read_ID_bitbash.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/Read_ID_bitbash/Read_ID_bitbash.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_ArcFill/TFT_ArcFill.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_ArcFill/TFT_ArcFill.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Char_times/TFT_Char_times.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Char_times/TFT_Char_times.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Clock/TFT_Clock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Clock/TFT_Clock.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Clock_Digital/TFT_Clock_Digital.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Clock_Digital/TFT_Clock_Digital.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Custom_Fonts/TFT_Custom_Fonts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Custom_Fonts/TFT_Custom_Fonts.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Ellipse/TFT_Ellipse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Ellipse/TFT_Ellipse.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_FillArcSpiral/TFT_FillArcSpiral.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_FillArcSpiral/TFT_FillArcSpiral.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Float_Test/TFT_Float_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Float_Test/TFT_Float_Test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Mandlebrot/TFT_Mandlebrot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Mandlebrot/TFT_Mandlebrot.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Matrix/TFT_Matrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Matrix/TFT_Matrix.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Meter_linear/TFT_Meter_linear.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Meter_linear/TFT_Meter_linear.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Meters/TFT_Meters.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Meters/TFT_Meters.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Pie_Chart/TFT_Pie_Chart.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Pie_Chart/TFT_Pie_Chart.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Pong/TFT_Pong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Pong/TFT_Pong.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Print_Test/TFT_Print_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Print_Test/TFT_Print_Test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Rainbow_one_lib/TFT_Rainbow_one_lib.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Rainbow_one_lib/TFT_Rainbow_one_lib.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Read_Reg/TFT_Read_Reg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Read_Reg/TFT_Read_Reg.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Spiro/TFT_Spiro.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Spiro/TFT_Spiro.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Starfield/TFT_Starfield.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Starfield/TFT_Starfield.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_String_Align/TFT_String_Align.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_String_Align/TFT_String_Align.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_Terminal/TFT_Terminal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_Terminal/TFT_Terminal.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_graphicstest_PDQ/TFT_graphicstest_PDQ.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_graphicstest_PDQ/TFT_graphicstest_PDQ.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/TFT_graphicstest_one_lib/TFT_graphicstest_one_lib.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/TFT_graphicstest_one_lib/TFT_graphicstest_one_lib.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/320 x 240/UTFT_demo/UTFT_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/320 x 240/UTFT_demo/UTFT_demo.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/Cellular_Automata/Cellular_Automata.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/Cellular_Automata/Cellular_Automata.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/Demo_3D_cube/Demo_3D_cube.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/Demo_3D_cube/Demo_3D_cube.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/Free_Font_Demo/Free_Font_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/Free_Font_Demo/Free_Font_Demo.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/Free_Font_Demo/Free_Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/Free_Font_Demo/Free_Fonts.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/Graph_2/Graph_2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/Graph_2/Graph_2.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/Keypad_480x320/Keypad_480x320.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/Keypad_480x320/Keypad_480x320.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_Char_times/TFT_Char_times.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_Char_times/TFT_Char_times.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_Ellipse/TFT_Ellipse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_Ellipse/TFT_Ellipse.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_Meter_4/TFT_Meter_4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_Meter_4/TFT_Meter_4.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_Meters/TFT_Meters.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_Meters/TFT_Meters.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_Padding_demo/TFT_Padding_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_Padding_demo/TFT_Padding_demo.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_Print_Test/TFT_Print_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_Print_Test/TFT_Print_Test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_Rainbow480/TFT_Rainbow480.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_Rainbow480/TFT_Rainbow480.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_String_Align/TFT_String_Align.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_String_Align/TFT_String_Align.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_flash_jpg/TFT_flash_jpg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_flash_jpg/TFT_flash_jpg.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_flash_jpg/jpeg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_flash_jpg/jpeg1.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_flash_jpg/jpeg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_flash_jpg/jpeg2.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_flash_jpg/jpeg3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_flash_jpg/jpeg3.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_flash_jpg/jpeg4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_flash_jpg/jpeg4.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_graphicstest_one_lib/TFT_graphicstest_one_lib.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_graphicstest_one_lib/TFT_graphicstest_one_lib.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_ring_meter/Alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_ring_meter/Alert.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/TFT_ring_meter/TFT_ring_meter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/TFT_ring_meter/TFT_ring_meter.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/Touch_Controller_Demo/Touch_Controller_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/Touch_Controller_Demo/Touch_Controller_Demo.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/480 x 320/UTFT_Demo_480x320/UTFT_Demo_480x320.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/480 x 320/UTFT_Demo_480x320/UTFT_Demo_480x320.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/DMA test/Flash_Jpg_DMA/Flash_Jpg_DMA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/DMA test/Flash_Jpg_DMA/Flash_Jpg_DMA.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/DMA test/Flash_Jpg_DMA/panda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/DMA test/Flash_Jpg_DMA/panda.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/DMA test/SpriteRotatingCube/SpriteRotatingCube.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/DMA test/SpriteRotatingCube/SpriteRotatingCube.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/DMA test/boing_ball/boing_ball.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/DMA test/boing_ball/boing_ball.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/DMA test/boing_ball/graphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/DMA test/boing_ball/graphic.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/FactoryTest/Button2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/FactoryTest/Button2.cpp -------------------------------------------------------------------------------- /TFT_eSPI/examples/FactoryTest/Button2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/FactoryTest/Button2.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/FactoryTest/FactoryTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/FactoryTest/FactoryTest.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/FactoryTest/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/FactoryTest/bmp.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/Baboon40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/Baboon40.jpg -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/EagleEye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/EagleEye.jpg -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/Mouse480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/Mouse480.jpg -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/lena20k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/Data/lena20k.jpg -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/ESP32_SDcard_jpeg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP32_SDcard_jpeg/ESP32_SDcard_jpeg.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/ESP8266_uncannyEyes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/ESP8266_uncannyEyes.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/defaultEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/defaultEye.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/dragonEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/dragonEye.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/goatEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/goatEye.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/noScleraEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/noScleraEye.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/screenshotToConsole.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/ESP8266_uncannyEyes/screenshotToConsole.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/Local_Custom_Fonts/Local_Custom_Fonts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/Local_Custom_Fonts/Local_Custom_Fonts.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/Local_Custom_Fonts/MyFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/Local_Custom_Fonts/MyFont.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/On_Off_Button/On_Off_Button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/On_Off_Button/On_Off_Button.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_Button_Label_Datum/TFT_Button_Label_Datum.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_Button_Label_Datum/TFT_Button_Label_Datum.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_Flash_Bitmap/Alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_Flash_Bitmap/Alert.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_Flash_Bitmap/Close.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_Flash_Bitmap/Close.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_Flash_Bitmap/Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_Flash_Bitmap/Info.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_Flash_Bitmap/TFT_Flash_Bitmap.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_Flash_Bitmap/TFT_Flash_Bitmap.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_SPIFFS_BMP/BMP_functions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_SPIFFS_BMP/BMP_functions.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_SPIFFS_BMP/TFT_SPIFFS_BMP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_SPIFFS_BMP/TFT_SPIFFS_BMP.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_SPIFFS_BMP/data/parrot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_SPIFFS_BMP/data/parrot.bmp -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_Screen_Capture/TFT_Screen_Capture.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_Screen_Capture/TFT_Screen_Capture.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_Screen_Capture/processing_sketch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_Screen_Capture/processing_sketch.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/TFT_Screen_Capture/screenServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/TFT_Screen_Capture/screenServer.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/Touch_calibrate/Touch_calibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/Touch_calibrate/Touch_calibrate.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/alphaBlend_Test/alphaBlend_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/alphaBlend_Test/alphaBlend_Test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/drawXBitmap/drawXBitmap.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/drawXBitmap/drawXBitmap.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Generic/drawXBitmap/xbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Generic/drawXBitmap/xbm.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_1_Array/Font_Demo_1_Array.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_1_Array/Font_Demo_1_Array.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_1_Array/Notes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_1_Array/Notes.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_1_Array/NotoSansBold15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_1_Array/NotoSansBold15.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_1_Array/NotoSansBold36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_1_Array/NotoSansBold36.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_2_Array/Font_Demo_2_Array.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_2_Array/Font_Demo_2_Array.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_2_Array/Notes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_2_Array/Notes.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_2_Array/NotoSansBold15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_2_Array/NotoSansBold15.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_2_Array/NotoSansBold36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_2_Array/NotoSansBold36.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/Font_Demo_3_Array.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/Font_Demo_3_Array.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/Notes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/Notes.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/NotoSansBold15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/NotoSansBold15.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/NotoSansBold36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/NotoSansBold36.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/NotoSansMonoSCB20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_3_Array/NotoSansMonoSCB20.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_4_Array/Font_Demo_4_Array.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_4_Array/Font_Demo_4_Array.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_4_Array/Notes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_4_Array/Notes.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_4_Array/NotoSansBold15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_4_Array/NotoSansBold15.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_4_Array/NotoSansBold36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Font_Demo_4_Array/NotoSansBold36.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Print_Smooth_Font/Final_Frontier_28.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Print_Smooth_Font/Final_Frontier_28.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Print_Smooth_Font/Print_Smooth_Font.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Print_Smooth_Font/Print_Smooth_Font.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_gradient/NotoSansBold15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_gradient/NotoSansBold15.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_gradient/NotoSansBold36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_gradient/NotoSansBold36.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_gradient/Smooth_font_gradient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_gradient/Smooth_font_gradient.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_reading_TFT/NotoSansBold15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_reading_TFT/NotoSansBold15.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_reading_TFT/NotoSansBold36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_reading_TFT/NotoSansBold36.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_reading_TFT/Smooth_font_reading_TFT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Smooth_font_reading_TFT/Smooth_font_reading_TFT.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/Final_Frontier_28.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/Final_Frontier_28.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/Latin_Hiragana_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/Latin_Hiragana_24.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/Unicode_Test_72.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/Unicode_Test_72.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/Unicode_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/Unicode_test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Latin-Hiragana-24.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Latin-Hiragana-24.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Unicode-Test-72.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/FLASH_Array/Unicode_test/data/Unicode-Test-72.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/ESP32_Smooth_Font_SD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/ESP32_Smooth_Font_SD.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/Font_Demo_1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/Font_Demo_1.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/Notes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/Notes.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_1/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/Font_Demo_2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/Font_Demo_2.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/Notes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/Notes.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_2/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/Font_Demo_3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/Font_Demo_3.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/Notes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/Notes.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansMonoSCB20.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_3/data/NotoSansMonoSCB20.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/Font_Demo_4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/Font_Demo_4.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/Notes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/Notes.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Font_Demo_4/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/Print_Smooth_Font.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/Print_Smooth_Font.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/Smooth_font_gradient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/Smooth_font_gradient.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_gradient/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/Smooth_font_reading_TFT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/Smooth_font_reading_TFT.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/data/NotoSansBold15.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/data/NotoSansBold15.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/data/NotoSansBold36.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Smooth_font_reading_TFT/data/NotoSansBold36.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/SPIFFS_functions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/SPIFFS_functions.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/Unicode_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/Unicode_test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Final-Frontier-28.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Final-Frontier-28.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Latin-Hiragana-24.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Latin-Hiragana-24.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Unicode-Test-72.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Smooth Fonts/SPIFFS/Unicode_test/data/Unicode-Test-72.vlw -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Animated_dial/Animated_dial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Animated_dial/Animated_dial.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Animated_dial/NotoSansBold36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Animated_dial/NotoSansBold36.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Animated_dial/data/dial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Animated_dial/data/dial.jpg -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Animated_dial/dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Animated_dial/dial.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/One_bit_Sprite_Demo/One_bit_Sprite_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/One_bit_Sprite_Demo/One_bit_Sprite_Demo.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/One_bit_Yin_Yang/One_bit_Yin_Yang.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/One_bit_Yin_Yang/One_bit_Yin_Yang.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Rotated_Sprite_1/Rotated_Sprite_1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Rotated_Sprite_1/Rotated_Sprite_1.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Rotated_Sprite_2/Rotated_Sprite_2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Rotated_Sprite_2/Rotated_Sprite_2.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Rotated_Sprite_3/Rotated_Sprite_3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Rotated_Sprite_3/Rotated_Sprite_3.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Rotated_Sprite_3/data/EagleEye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Rotated_Sprite_3/data/EagleEye.jpg -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Rotated_Sprite_3/data/Eye_80x64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Rotated_Sprite_3/data/Eye_80x64.jpg -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_RLE_Font_test/Sprite_RLE_Font_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_RLE_Font_test/Sprite_RLE_Font_test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_TFT_Rainbow/Sprite_TFT_Rainbow.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_TFT_Rainbow/Sprite_TFT_Rainbow.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_draw/Sprite_draw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_draw/Sprite_draw.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_draw_4bit/Sprite_draw_4bit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_draw_4bit/Sprite_draw_4bit.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_image_4bit/Sprite_image_4bit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_image_4bit/Sprite_image_4bit.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_image_4bit/sample_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_image_4bit/sample_images.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_image_4bit/starImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_image_4bit/starImage.cpp -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_scroll/Sprite_scroll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_scroll/Sprite_scroll.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_scroll_16bit/Sprite_scroll_16bit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_scroll_16bit/Sprite_scroll_16bit.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_scroll_1bit/Sprite_scroll_1bit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_scroll_1bit/Sprite_scroll_1bit.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_scroll_4bit/Sprite_scroll_4bit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_scroll_4bit/Sprite_scroll_4bit.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_scroll_8bit/Sprite_scroll_8bit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_scroll_8bit/Sprite_scroll_8bit.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Sprite_scroll_wrap_1bit/Sprite_scroll_wrap_1bit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Sprite_scroll_wrap_1bit/Sprite_scroll_wrap_1bit.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Transparent_Sprite_Demo/Transparent_Sprite_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Transparent_Sprite_Demo/Transparent_Sprite_Demo.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Sprite/Transparent_Sprite_Demo_4bit/Transparent_Sprite_Demo_4bit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Sprite/Transparent_Sprite_Demo_4bit/Transparent_Sprite_Demo_4bit.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Test and diagnostics/Colour_Test/Colour_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Test and diagnostics/Colour_Test/Colour_Test.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Test and diagnostics/Read_User_Setup/Read_User_Setup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Test and diagnostics/Read_User_Setup/Read_User_Setup.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/Test and diagnostics/Test_Touch_Controller/Test_Touch_Controller.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/Test and diagnostics/Test_Touch_Controller/Test_Touch_Controller.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/ePaper/Floyd_Steinberg/EPD_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/ePaper/Floyd_Steinberg/EPD_Support.h -------------------------------------------------------------------------------- /TFT_eSPI/examples/ePaper/Floyd_Steinberg/Floyd_Steinberg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/ePaper/Floyd_Steinberg/Floyd_Steinberg.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/ePaper/Floyd_Steinberg/Floyd_Steinberg_BMP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/ePaper/Floyd_Steinberg/Floyd_Steinberg_BMP.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/ePaper/Floyd_Steinberg/SPIFFS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/ePaper/Floyd_Steinberg/SPIFFS.ino -------------------------------------------------------------------------------- /TFT_eSPI/examples/ePaper/Floyd_Steinberg/data/TestCard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/ePaper/Floyd_Steinberg/data/TestCard.bmp -------------------------------------------------------------------------------- /TFT_eSPI/examples/ePaper/Floyd_Steinberg/data/Tiger.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/examples/ePaper/Floyd_Steinberg/data/Tiger.bmp -------------------------------------------------------------------------------- /TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/library.json -------------------------------------------------------------------------------- /TFT_eSPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/library.properties -------------------------------------------------------------------------------- /TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /eagle/TTGO-TDisplay.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/eagle/TTGO-TDisplay.lbr -------------------------------------------------------------------------------- /firmware/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/firmware/README.MD -------------------------------------------------------------------------------- /firmware/esp32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/firmware/esp32-1.png -------------------------------------------------------------------------------- /firmware/esp32-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/firmware/esp32-2.png -------------------------------------------------------------------------------- /firmware/firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/firmware/firmware.bin -------------------------------------------------------------------------------- /image/SD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/image/SD.jpg -------------------------------------------------------------------------------- /image/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/image/image4.jpg -------------------------------------------------------------------------------- /image/pinmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/image/pinmap.jpg -------------------------------------------------------------------------------- /kicad/TTGO_T_Display/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/kicad/TTGO_T_Display/README.MD -------------------------------------------------------------------------------- /kicad/TTGO_T_Display/footprints/TTGO_T_Display.pretty/TTGO-T-Display.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/kicad/TTGO_T_Display/footprints/TTGO_T_Display.pretty/TTGO-T-Display.kicad_mod -------------------------------------------------------------------------------- /kicad/TTGO_T_Display/symbols/TTGO_T_Display.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/kicad/TTGO_T_Display/symbols/TTGO_T_Display.kicad_sym -------------------------------------------------------------------------------- /schematic/ESP32-TFT(6-26).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinyuan-LilyGO/TTGO-T-Display/HEAD/schematic/ESP32-TFT(6-26).pdf --------------------------------------------------------------------------------