├── .gitattributes ├── ESP32_specs_and_manuals ├── Comparison_Espressif-ESP32-S2-C3-S3.pdf ├── ESP-Prog.jpg ├── ESP32-S3-WROOM-1(U)_Variants.jpg ├── ESP32-S3-Wroom-1_Wroom-1u_datasheet.pdf ├── ESP32-S3_Datasheet.pdf ├── ESP32-S3_Hardware_design_guidelines.pdf ├── ESP32-S3_Technical_reference_manual.pdf ├── ESP32-S3_USB Serial_JTAG Controller Console.pdf ├── ESP32_Datasheet.pdf ├── ESP32_Hardware_design_guidelines.pdf ├── ESP32_Technical_reference_manual.pdf └── Xtensa_Instruction_Set_Architecture.pdf ├── LICENSE ├── README.md ├── boards ├── ESP32-1.14-Display-DevBoard │ ├── Readme.md │ ├── doc │ │ ├── LILYGO-ESP32-1.14-Display.jpg │ │ ├── LILYGO-ESP32-1.14-Display_Bottom.jpg │ │ ├── LILYGO-ESP32-1.14-Display_Pinout.jpg │ │ └── LILYGO-TTGO-T-DISPLAY-ESP32-TFT Schematic V1.1.pdf │ └── examples │ │ ├── ArduinoIDE │ │ └── Test-ESP32-TTGO_Display │ │ │ ├── Test-ESP32-TTGO_Display.ino │ │ │ └── bmp.h │ │ └── PlatformIO │ │ └── Test-ESP32-TTGO_Display │ │ ├── .gitignore │ │ ├── add_tasks.py │ │ ├── include │ │ ├── README │ │ └── bmp.h │ │ ├── lib │ │ ├── Button2 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── LongpressHandler │ │ │ │ │ └── LongpressHandler.ino │ │ │ │ ├── MultiHandler │ │ │ │ │ └── MultiHandler.ino │ │ │ │ ├── MultipleButtons │ │ │ │ │ └── MultipleButtons.ino │ │ │ │ ├── SingleButton │ │ │ │ │ └── SingleButton.ino │ │ │ │ └── SingleButtonSimple │ │ │ │ │ └── SingleButtonSimple.ino │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── Button2.cpp │ │ │ │ └── Button2.h │ │ ├── README │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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_SPIFFS_Jpeg │ │ │ │ │ ├── JPEG_functions.ino │ │ │ │ │ ├── SPIFFS_functions.ino │ │ │ │ │ └── TFT_SPIFFS_Jpeg.ino │ │ │ │ ├── TFT_flash_jpg │ │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ │ ├── jpeg1.h │ │ │ │ │ ├── jpeg2.h │ │ │ │ │ ├── jpeg3.h │ │ │ │ │ └── jpeg4.h │ │ │ │ ├── TFT_graphicstest_PDQ3 │ │ │ │ │ └── TFT_graphicstest_PDQ3.ino │ │ │ │ ├── TFT_graphicstest_small │ │ │ │ │ └── TFT_graphicstest_small.ino │ │ │ │ └── UTFT_demo_fast │ │ │ │ │ └── UTFT_demo_fast.ino │ │ │ ├── 320 x 240 │ │ │ │ ├── All_Free_Fonts_Demo │ │ │ │ │ ├── All_Free_Fonts_Demo.ino │ │ │ │ │ └── Free_Fonts.h │ │ │ │ ├── Cellular_Automata │ │ │ │ │ └── Cellular_Automata.ino │ │ │ │ ├── Free_Font_Demo │ │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ │ └── Free_Fonts.h │ │ │ │ ├── Keypad_240x320 │ │ │ │ │ └── Keypad_240x320.ino │ │ │ │ ├── RLE_Font_test │ │ │ │ │ └── RLE_Font_test.ino │ │ │ │ ├── Read_ID_bitbash │ │ │ │ │ └── Read_ID_bitbash.ino │ │ │ │ ├── TFT_ArcFill │ │ │ │ │ └── TFT_ArcFill.ino │ │ │ │ ├── TFT_Char_times │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ ├── TFT_Clock │ │ │ │ │ └── TFT_Clock.ino │ │ │ │ ├── TFT_Clock_Digital │ │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ │ ├── TFT_Custom_Fonts │ │ │ │ │ └── TFT_Custom_Fonts.ino │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ ├── TFT_FillArcSpiral │ │ │ │ │ └── TFT_FillArcSpiral.ino │ │ │ │ ├── TFT_Float_Test │ │ │ │ │ └── TFT_Float_Test.ino │ │ │ │ ├── TFT_Mandlebrot │ │ │ │ │ └── TFT_Mandlebrot.ino │ │ │ │ ├── TFT_Matrix │ │ │ │ │ └── TFT_Matrix.ino │ │ │ │ ├── TFT_Meter_linear │ │ │ │ │ └── TFT_Meter_linear.ino │ │ │ │ ├── TFT_Meters │ │ │ │ │ └── TFT_Meters.ino │ │ │ │ ├── TFT_Pie_Chart │ │ │ │ │ └── TFT_Pie_Chart.ino │ │ │ │ ├── TFT_Pong │ │ │ │ │ └── TFT_Pong.ino │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ ├── TFT_Rainbow_one_lib │ │ │ │ │ └── TFT_Rainbow_one_lib.ino │ │ │ │ ├── TFT_Read_Reg │ │ │ │ │ └── TFT_Read_Reg.ino │ │ │ │ ├── TFT_Spiro │ │ │ │ │ └── TFT_Spiro.ino │ │ │ │ ├── TFT_Starfield │ │ │ │ │ └── TFT_Starfield.ino │ │ │ │ ├── TFT_String_Align │ │ │ │ │ └── TFT_String_Align.ino │ │ │ │ ├── TFT_Terminal │ │ │ │ │ └── TFT_Terminal.ino │ │ │ │ ├── TFT_graphicstest_PDQ │ │ │ │ │ └── TFT_graphicstest_PDQ.ino │ │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ │ └── UTFT_demo │ │ │ │ │ └── UTFT_demo.ino │ │ │ ├── 480 x 320 │ │ │ │ ├── Cellular_Automata │ │ │ │ │ └── Cellular_Automata.ino │ │ │ │ ├── Demo_3D_cube │ │ │ │ │ └── Demo_3D_cube.ino │ │ │ │ ├── Free_Font_Demo │ │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ │ └── Free_Fonts.h │ │ │ │ ├── Graph_2 │ │ │ │ │ └── Graph_2.ino │ │ │ │ ├── Keypad_480x320 │ │ │ │ │ └── Keypad_480x320.ino │ │ │ │ ├── TFT_Char_times │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ ├── TFT_Meter_4 │ │ │ │ │ └── TFT_Meter_4.ino │ │ │ │ ├── TFT_Meters │ │ │ │ │ └── TFT_Meters.ino │ │ │ │ ├── TFT_Padding_demo │ │ │ │ │ └── TFT_Padding_demo.ino │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ ├── TFT_Rainbow480 │ │ │ │ │ └── TFT_Rainbow480.ino │ │ │ │ ├── TFT_String_Align │ │ │ │ │ └── TFT_String_Align.ino │ │ │ │ ├── TFT_flash_jpg │ │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ │ ├── jpeg1.h │ │ │ │ │ ├── jpeg2.h │ │ │ │ │ ├── jpeg3.h │ │ │ │ │ └── jpeg4.h │ │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ │ ├── TFT_ring_meter │ │ │ │ │ ├── Alert.h │ │ │ │ │ └── TFT_ring_meter.ino │ │ │ │ ├── Touch_Controller_Demo │ │ │ │ │ └── Touch_Controller_Demo.ino │ │ │ │ └── UTFT_Demo_480x320 │ │ │ │ │ └── UTFT_Demo_480x320.ino │ │ │ ├── DMA test │ │ │ │ ├── Flash_Jpg_DMA │ │ │ │ │ ├── Flash_Jpg_DMA.ino │ │ │ │ │ └── panda.h │ │ │ │ ├── SpriteRotatingCube │ │ │ │ │ └── SpriteRotatingCube.ino │ │ │ │ └── boing_ball │ │ │ │ │ ├── boing_ball.ino │ │ │ │ │ └── graphic.h │ │ │ ├── Generic │ │ │ │ ├── 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_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 │ │ ├── platformio.ini │ │ ├── src │ │ └── main.cpp │ │ └── test │ │ └── README ├── ESP32-CAM │ ├── Readme.md │ ├── doc │ │ ├── ESP32-CAM-MB sandwich board.jpg │ │ ├── ESP32-CAM-MB.jpg │ │ ├── ESP32-CAM-Schematic.jpg │ │ ├── ESP32-CAM-USB.jpg │ │ ├── ESP32-CAM-USB_top_bottom.jpg │ │ ├── ESP32-CAM.jpg │ │ ├── ESP32-CAM_Pinout.JPG │ │ ├── ESP32-CAM_Programming.JPG │ │ └── Setting_XCLK_via_web_interfaceJPG.jpg │ └── examples │ │ ├── Test-ESP32-CAM-MB_Camera │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ ├── README │ │ │ ├── camera_index.h │ │ │ └── camera_pins.h │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ ├── app_httpd.cpp │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-ESP32-CAM_Camera │ │ ├── .gitignore │ │ ├── add_tasks.py │ │ ├── include │ │ │ ├── README │ │ │ ├── camera_index.h │ │ │ └── camera_pins.h │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ ├── app_httpd.cpp │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ └── Test-ESP32-CAM_HW-Info │ │ ├── .gitignore │ │ ├── Serial Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ └── README │ │ ├── lib │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ └── main.cpp │ │ └── test │ │ └── README ├── ESP32-DevKit-V1 │ ├── Readme.md │ ├── doc │ │ ├── ESP32-DevKit-V1-ArduinoIDE-Settings.jpg │ │ ├── ESP32-DevKit-V1-Pinout.jpg │ │ ├── ESP32-DevKit-V1-Schematic.jpg │ │ └── ESP32-Devkit-V1.jpg │ └── examples │ │ ├── ArduinoIDE │ │ ├── Test-DevKit-V1-DAC-Sinus │ │ │ └── Test-DevKit-V1-DAC-Sinus.ino │ │ ├── Test-DevKit-V1-DAC-Voltage │ │ │ └── Test-DevKit-V1-DAC-Voltage.ino │ │ ├── Test-DevKit-V1-FW-Update-per-SD-Card │ │ │ └── Test-DevKit-V1-FW-Update-per-SD-Card.ino │ │ ├── Test-DevKit-V1-HW-Info │ │ │ └── Test-DevKit-V1-HW-Info.ino │ │ ├── Test-DevKit-V1-LED │ │ │ └── Test-DevKit-V1-LED.ino │ │ ├── Test-DevKit-V1-Partitions │ │ │ └── Test-DevKit-V1-Partitions.ino │ │ ├── Test-DevKit-V1-SD-Card-1 │ │ │ └── Test-DevKit-V1-SD-Card-1.ino │ │ ├── Test-DevKit-V1-SD-Card-2 │ │ │ └── Test-DevKit-V1-SD-Card-2.ino │ │ ├── Test-DevKit-V1-Semaphore-1 │ │ │ └── Test-DevKit-V1-Semaphore-1.ino │ │ ├── Test-DevKit-V1-Semaphore-2 │ │ │ └── Test-DevKit-V1-Semaphore-2.ino │ │ ├── Test-DevKit-V1-Timer │ │ │ └── Test-DevKit-V1-Timer.ino │ │ ├── Test-DevKit-V1-Watchdog-1 │ │ │ └── Test-DevKit-V1-Watchdog-1.ino │ │ ├── Test-DevKit-V1-Watchdog-2 │ │ │ └── Test-DevKit-V1-Watchdog-2.ino │ │ ├── Test-DevKit-V1-Watchdog-3 │ │ │ └── Test-DevKit-V1-Watchdog-3.ino │ │ └── Test-DevKit-V1-Watchdog-4 │ │ │ └── Test-DevKit-V1-Watchdog-4.ino │ │ └── PlatformIO │ │ ├── Test-DevKit-V1-DAC-Sinus │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-DAC-Voltage │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-FW-Update-per-SD-Card │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── Serial_Output_file_to_big.log │ │ ├── Serial_Output_update_error.log │ │ ├── add_tasks.py │ │ ├── firmware.bin │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-HW-Info │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-LED │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-Partitions │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output_bare_minimum_2MB.log │ │ ├── Serial_Output_default.log │ │ ├── Serial_Output_default_ffat.log │ │ ├── Serial_Output_huge_app.log │ │ ├── Serial_Output_min_spiffs.log │ │ ├── Serial_Output_no_ota.log │ │ ├── Serial_Output_noota_ffat.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-SD-Card-1 │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-SD-Card-2 │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-Semaphore-1 │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-Semaphore-2 │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-Timer │ │ ├── .gitignore │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-Watchdog-1 │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── Serial_Output_loop_starved.log │ │ ├── Serial_Output_watchdog_triggers.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-Watchdog-2 │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── Serial_Output_watchdog_triggers.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-DevKit-V1-Watchdog-3 │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ └── Test-DevKit-V1-Watchdog-4 │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ └── README │ │ ├── lib │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ └── main.cpp │ │ └── test │ │ └── README ├── ESP32-S3-0.85-Display-DevBoard │ ├── Readme.md │ ├── doc │ │ ├── GC9107 DataSheet V1.2.pdf │ │ ├── LILYGO-ESP32-S3-0.85-Display.jpg │ │ ├── LILYGO-ESP32-S3-0.85-Display_Bottom.jpg │ │ ├── LILYGO-ESP32-S3-0.85-Display_Pinout.jpg │ │ ├── LILYGO-ESP32-S3-0.85-Display_Schematic.pdf │ │ ├── LILYGO-ESP32-S3-0.85-Display_Size.jpg │ │ ├── LILYGO-ESP32-S3-0.85-Display_Specification.jpg │ │ └── LILYGO-ESP32-S3-0.85-Display_Top+Bottom.jpg │ └── examples │ │ ├── Test-ESP32-S3-0.85inch_WiFi │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-ESP32-S3-0.85inch_factory │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── doc │ │ │ ├── Display_example_factory.jpg │ │ │ └── logo.png │ │ ├── include │ │ │ ├── README │ │ │ ├── image_logo.h │ │ │ ├── lv_conf.h │ │ │ ├── lvgl_gui.h │ │ │ ├── pin_config.h │ │ │ ├── tft.h │ │ │ └── tft_driver.h │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ ├── clock_bg_img.c │ │ │ ├── clock_hour_img.c │ │ │ ├── clock_min_img.c │ │ │ ├── clock_sec_img.c │ │ │ ├── duck_gif.c │ │ │ ├── lvgl_gui.cpp │ │ │ ├── main.cpp │ │ │ ├── tft.cpp │ │ │ └── tft_driver.cpp │ │ └── test │ │ │ └── README │ │ └── Test-ESP32-S3-0.85inch_tft │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Fuses.log │ │ ├── GC9A01_Rotation.h │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ ├── README │ │ ├── image_logo.h │ │ └── pin_config.h │ │ ├── lib │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ └── main.cpp │ │ └── test │ │ └── README ├── ESP32-S3-1.9-Display-DevBoard │ ├── Readme.md │ ├── doc │ │ ├── LILYGO-ESP32-S3-1.9-Display 2.jpg │ │ ├── LILYGO-ESP32-S3-1.9-Display.jpg │ │ ├── LILYGO-ESP32-S3-1.9-Display_Pinout.jpg │ │ ├── LILYGO-ESP32-S3-1.9-Display_Schematic..pdf │ │ ├── LILYGO-ESP32-S3-1.9-Display_Size.jpg │ │ └── LILYGO-ESP32-S3-1.9-Display_Top+Bottom.jpg │ └── examples │ │ ├── Test-ESP32-S3-1.9inch_RAM-PSRAM │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Fuses.log │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-ESP32-S3-1.9inch_WiFi │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ └── README │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ ├── Test-ESP32-S3-1.9inch_factory │ │ ├── .gitignore │ │ ├── 3D_file │ │ │ ├── README.md │ │ │ └── t_display_s3.stp │ │ ├── Build.log │ │ ├── Display_example_factory.jpg │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ │ ├── README │ │ │ ├── cstxx.h │ │ │ ├── factory_gui.h │ │ │ ├── lv_conf.h │ │ │ └── pin_config.h │ │ ├── lib │ │ │ └── README │ │ ├── platformio.ini │ │ ├── src │ │ │ ├── cstxx.cpp │ │ │ ├── factory_gui.cpp │ │ │ ├── font_Alibaba.c │ │ │ ├── lilygo1_gif.c │ │ │ ├── lilygo2_gif.c │ │ │ └── main.cpp │ │ └── test │ │ │ └── README │ │ └── Test-ESP32-S3-1.9inch_tft │ │ ├── .gitignore │ │ ├── Build.log │ │ ├── Display_after_setup().jpg │ │ ├── Display_snapshot_loop() 1.jpg │ │ ├── Display_snapshot_loop() 2.jpg │ │ ├── Display_snapshot_loop() 3.jpg │ │ ├── Serial_Output.log │ │ ├── add_tasks.py │ │ ├── include │ │ ├── README │ │ ├── img_logo.h │ │ └── pin_config.h │ │ ├── lib │ │ ├── README │ │ └── TFT_eSPI │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Extensions │ │ │ ├── Button.cpp │ │ │ ├── Button.h │ │ │ ├── Smooth_font.cpp │ │ │ ├── Smooth_font.h │ │ │ ├── Sprite.cpp │ │ │ ├── Sprite.h │ │ │ ├── Touch.cpp │ │ │ └── Touch.h │ │ │ ├── Fonts │ │ │ ├── Custom │ │ │ │ ├── Orbitron_Light_24.h │ │ │ │ ├── Orbitron_Light_32.h │ │ │ │ ├── Roboto_Thin_24.h │ │ │ │ ├── Satisfy_24.h │ │ │ │ └── Yellowtail_32.h │ │ │ ├── Font16.c │ │ │ ├── Font16.h │ │ │ ├── Font32rle.c │ │ │ ├── Font32rle.h │ │ │ ├── Font64rle.c │ │ │ ├── Font64rle.h │ │ │ ├── Font72rle.c │ │ │ ├── Font72rle.h │ │ │ ├── Font72x53rle.c │ │ │ ├── Font72x53rle.h │ │ │ ├── Font7srle.c │ │ │ ├── Font7srle.h │ │ │ ├── GFXFF │ │ │ │ ├── FreeMono12pt7b.h │ │ │ │ ├── FreeMono18pt7b.h │ │ │ │ ├── FreeMono24pt7b.h │ │ │ │ ├── FreeMono9pt7b.h │ │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ │ ├── FreeSans12pt7b.h │ │ │ │ ├── FreeSans18pt7b.h │ │ │ │ ├── FreeSans24pt7b.h │ │ │ │ ├── FreeSans9pt7b.h │ │ │ │ ├── FreeSansBold12pt7b.h │ │ │ │ ├── FreeSansBold18pt7b.h │ │ │ │ ├── FreeSansBold24pt7b.h │ │ │ │ ├── FreeSansBold9pt7b.h │ │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ │ ├── FreeSerif12pt7b.h │ │ │ │ ├── FreeSerif18pt7b.h │ │ │ │ ├── FreeSerif24pt7b.h │ │ │ │ ├── FreeSerif9pt7b.h │ │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ │ ├── TomThumb.h │ │ │ │ ├── gfxfont.h │ │ │ │ ├── license.txt │ │ │ │ └── print.txt │ │ │ ├── TrueType │ │ │ │ └── Not_yet_supported.txt │ │ │ └── glcdfont.c │ │ │ ├── Kconfig │ │ │ ├── Processors │ │ │ ├── TFT_eSPI_ESP32.c │ │ │ ├── TFT_eSPI_ESP32.h │ │ │ ├── TFT_eSPI_ESP32_C3.c │ │ │ ├── TFT_eSPI_ESP32_C3.h │ │ │ ├── TFT_eSPI_ESP32_S3.c │ │ │ ├── TFT_eSPI_ESP32_S3.h │ │ │ ├── TFT_eSPI_ESP8266.c │ │ │ ├── TFT_eSPI_ESP8266.h │ │ │ ├── TFT_eSPI_Generic.c │ │ │ ├── TFT_eSPI_Generic.h │ │ │ ├── TFT_eSPI_RP2040.c │ │ │ ├── TFT_eSPI_RP2040.h │ │ │ ├── TFT_eSPI_STM32.c │ │ │ ├── TFT_eSPI_STM32.h │ │ │ ├── pio_16bit_parallel.pio │ │ │ ├── pio_16bit_parallel.pio.h │ │ │ ├── pio_8bit_parallel.pio │ │ │ ├── pio_8bit_parallel.pio.h │ │ │ ├── pio_SPI.pio │ │ │ ├── pio_SPI.pio.h │ │ │ ├── pio_SPI_18bit.pio │ │ │ └── pio_SPI_18bit.pio.h │ │ │ ├── README.md │ │ │ ├── README.txt │ │ │ ├── TFT_Drivers │ │ │ ├── EPD_Defines.h │ │ │ ├── GC9A01_Defines.h │ │ │ ├── GC9A01_Init.h │ │ │ ├── GC9A01_Rotation.h │ │ │ ├── HX8357B_Defines.h │ │ │ ├── HX8357B_Init.h │ │ │ ├── HX8357B_Rotation.h │ │ │ ├── HX8357C_Defines.h │ │ │ ├── HX8357C_Init.h │ │ │ ├── HX8357C_Rotation.h │ │ │ ├── HX8357D_Defines.h │ │ │ ├── HX8357D_Init.h │ │ │ ├── HX8357D_Rotation.h │ │ │ ├── ILI9163_Defines.h │ │ │ ├── ILI9163_Init.h │ │ │ ├── ILI9163_Rotation.h │ │ │ ├── ILI9225_Defines.h │ │ │ ├── ILI9225_Init.h │ │ │ ├── ILI9225_Rotation.h │ │ │ ├── ILI9341_Defines.h │ │ │ ├── ILI9341_Init.h │ │ │ ├── ILI9341_Rotation.h │ │ │ ├── ILI9481_Defines.h │ │ │ ├── ILI9481_Init.h │ │ │ ├── ILI9481_Rotation.h │ │ │ ├── ILI9486_Defines.h │ │ │ ├── ILI9486_Init.h │ │ │ ├── ILI9486_Rotation.h │ │ │ ├── ILI9488_Defines.h │ │ │ ├── ILI9488_Init.h │ │ │ ├── ILI9488_Rotation.h │ │ │ ├── R61581_Defines.h │ │ │ ├── R61581_Init.h │ │ │ ├── R61581_Rotation.h │ │ │ ├── RM68120_Defines.h │ │ │ ├── RM68120_Init.h │ │ │ ├── RM68120_Rotation.h │ │ │ ├── RM68140_Defines.h │ │ │ ├── RM68140_Init.h │ │ │ ├── RM68140_Rotation.h │ │ │ ├── S6D02A1_Defines.h │ │ │ ├── S6D02A1_Init.h │ │ │ ├── S6D02A1_Rotation.h │ │ │ ├── SSD1351_Defines.h │ │ │ ├── SSD1351_Init.h │ │ │ ├── SSD1351_Rotation.h │ │ │ ├── SSD1963_Defines.h │ │ │ ├── SSD1963_Init.h │ │ │ ├── SSD1963_Rotation.h │ │ │ ├── ST7735_Defines.h │ │ │ ├── ST7735_Init.h │ │ │ ├── ST7735_Rotation.h │ │ │ ├── ST7789_2_Defines.h │ │ │ ├── ST7789_2_Init.h │ │ │ ├── ST7789_2_Rotation.h │ │ │ ├── ST7789_Defines.h │ │ │ ├── ST7789_Init.h │ │ │ ├── ST7789_Rotation.h │ │ │ ├── ST7796_Defines.h │ │ │ ├── ST7796_Init.h │ │ │ └── ST7796_Rotation.h │ │ │ ├── TFT_config.h │ │ │ ├── TFT_eSPI.cpp │ │ │ ├── TFT_eSPI.h │ │ │ ├── Tools │ │ │ ├── Create_Smooth_Font │ │ │ │ └── Create_font │ │ │ │ │ ├── Create_font.pde │ │ │ │ │ ├── FontFiles │ │ │ │ │ └── Final-Frontier28.vlw │ │ │ │ │ └── data │ │ │ │ │ └── Final-Frontier.ttf │ │ │ ├── Screenshot_client │ │ │ │ └── Screenshot_client.pde │ │ │ └── bmp2array4bit │ │ │ │ ├── README.md │ │ │ │ ├── bmp2array4bit.py │ │ │ │ └── star.bmp │ │ │ ├── User_Setup.h │ │ │ ├── User_Setup_Select.h │ │ │ ├── User_Setups │ │ │ ├── Setup100_RP2040_ILI9488_parallel.h │ │ │ ├── Setup101_RP2040_ILI9481_parallel.h │ │ │ ├── Setup102_RP2040_ILI9341_parallel.h │ │ │ ├── Setup103_RP2040_ILI9486_parallel.h │ │ │ ├── Setup104_RP2040_ST7796_parallel.h │ │ │ ├── Setup105_RP2040_ST7796_16bit_parallel.h │ │ │ ├── Setup106_RP2040_ILI9481_16bit_parallel.h │ │ │ ├── Setup107_RP2040_ILI9341_16bit_parallel.h │ │ │ ├── Setup10_RPi_touch_ILI9486.h │ │ │ ├── Setup11_RPi_touch_ILI9486.h │ │ │ ├── Setup12_M5Stack_Basic_Core.h │ │ │ ├── Setup135_ST7789.h │ │ │ ├── Setup136_LilyGo_TTV.h │ │ │ ├── Setup137_LilyGo_TDisplay_RP2040.h │ │ │ ├── Setup13_ILI9481_Parallel.h │ │ │ ├── Setup14_ILI9341_Parallel.h │ │ │ ├── Setup15_HX8357D.h │ │ │ ├── Setup16_ILI9488_Parallel.h │ │ │ ├── Setup17_ePaper.h │ │ │ ├── Setup18_ST7789.h │ │ │ ├── Setup19_RM68140_Parallel.h │ │ │ ├── Setup1_ILI9341.h │ │ │ ├── Setup200_GC9A01.h │ │ │ ├── Setup201_WT32_SC01.h │ │ │ ├── Setup202_SSD1351_128.h │ │ │ ├── Setup203_ST7789.h │ │ │ ├── Setup204_ESP32_TouchDown.h │ │ │ ├── Setup205_ESP32_TouchDown_S3.h │ │ │ ├── Setup20_ILI9488.h │ │ │ ├── Setup21_ILI9488.h │ │ │ ├── Setup22_TTGO_T4.h │ │ │ ├── Setup22_TTGO_T4_v1.3.h │ │ │ ├── Setup23_TTGO_TM.h │ │ │ ├── Setup24_ST7789.h │ │ │ ├── Setup25_TTGO_T_Display.h │ │ │ ├── Setup26_TTGO_T_Wristband.h │ │ │ ├── Setup27_RPi_ST7796_ESP32.h │ │ │ ├── Setup28_RPi_ST7796_ESP8266.h │ │ │ ├── Setup29_ILI9341_STM32.h │ │ │ ├── Setup2_ST7735.h │ │ │ ├── Setup30_ILI9341_Parallel_STM32.h │ │ │ ├── Setup31_ST7796_Parallel_STM32.h │ │ │ ├── Setup32_ILI9341_STM32F103.h │ │ │ ├── Setup33_RPi_ILI9486_STM32.h │ │ │ ├── Setup34_ILI9481_Parallel_STM32.h │ │ │ ├── Setup35_ILI9341_STM32_Port_Bus.h │ │ │ ├── Setup36_RPi_touch_ST7796.h │ │ │ ├── Setup3_ILI9163.h │ │ │ ├── Setup42_ILI9341_ESP32.h │ │ │ ├── Setup43_ST7735.h │ │ │ ├── Setup44_TTGO_CameraPlus.h │ │ │ ├── Setup45_TTGO_T_Watch.h │ │ │ ├── Setup46_GC9A01_ESP32.h │ │ │ ├── Setup47_ST7735.h │ │ │ ├── Setup4_S6D02A1.h │ │ │ ├── Setup50_SSD1963_Parallel.h │ │ │ ├── Setup51_LilyPi_ILI9481.h │ │ │ ├── Setup52_LilyPi_ST7796.h │ │ │ ├── Setup5_RPi_ILI9486.h │ │ │ ├── Setup60_RP2040_ILI9341.h │ │ │ ├── Setup61_RP2040_ILI9341_PIO_SPI.h │ │ │ ├── Setup62_RP2040_Nano_Connect_ILI9341.h │ │ │ ├── Setup6_RPi_Wr_ILI9486.h │ │ │ ├── Setup70_ESP32_S2_ILI9341.h │ │ │ ├── Setup70b_ESP32_S3_ILI9341.h │ │ │ ├── Setup70c_ESP32_C3_ILI9341.h │ │ │ ├── Setup70d_ILI9488_S3_Parallel.h │ │ │ ├── Setup71_ESP32_S2_ST7789.h │ │ │ ├── Setup72_ESP32_ST7789_172x320.h │ │ │ ├── Setup7_ST7735_128x128.h │ │ │ ├── Setup8_ILI9163_128x128.h │ │ │ ├── Setup9_ST7735_Overlap.h │ │ │ ├── SetupX_Template.h │ │ │ └── User_Custom_Fonts.h │ │ │ ├── docs │ │ │ ├── ESP32 UNO board mod │ │ │ │ ├── ESP32 UNO board mod.jpg │ │ │ │ └── ESP32 UNO board pinout.jpg │ │ │ ├── PlatformIO │ │ │ │ └── Configuring options.txt │ │ │ └── RPi_TFT_connections │ │ │ │ ├── RPi_TFT_Connections.png │ │ │ │ └── RPi_TFT_mod.png │ │ │ ├── examples │ │ │ ├── 160 x 128 │ │ │ │ ├── Arduino_Life │ │ │ │ │ └── Arduino_Life.ino │ │ │ │ ├── Pong_v3 │ │ │ │ │ └── Pong_v3.ino │ │ │ │ ├── RLE_Font_test │ │ │ │ │ └── RLE_Font_test.ino │ │ │ │ ├── TFT_Char_times │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ ├── TFT_Clock │ │ │ │ │ └── TFT_Clock.ino │ │ │ │ ├── TFT_Clock_Digital │ │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ ├── TFT_Meter_5 │ │ │ │ │ └── TFT_Meter_5.ino │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ ├── TFT_Rainbow │ │ │ │ │ └── TFT_Rainbow.ino │ │ │ │ ├── TFT_flash_jpg │ │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ │ ├── jpeg1.h │ │ │ │ │ ├── jpeg2.h │ │ │ │ │ ├── jpeg3.h │ │ │ │ │ └── jpeg4.h │ │ │ │ ├── TFT_graphicstest_PDQ3 │ │ │ │ │ └── TFT_graphicstest_PDQ3.ino │ │ │ │ ├── TFT_graphicstest_small │ │ │ │ │ └── TFT_graphicstest_small.ino │ │ │ │ └── UTFT_demo_fast │ │ │ │ │ └── UTFT_demo_fast.ino │ │ │ ├── 320 x 240 │ │ │ │ ├── All_Free_Fonts_Demo │ │ │ │ │ ├── All_Free_Fonts_Demo.ino │ │ │ │ │ └── Free_Fonts.h │ │ │ │ ├── Cellular_Automata │ │ │ │ │ └── Cellular_Automata.ino │ │ │ │ ├── Free_Font_Demo │ │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ │ └── Free_Fonts.h │ │ │ │ ├── Keypad_240x320 │ │ │ │ │ └── Keypad_240x320.ino │ │ │ │ ├── RLE_Font_test │ │ │ │ │ └── RLE_Font_test.ino │ │ │ │ ├── Read_ID_bitbash │ │ │ │ │ └── Read_ID_bitbash.ino │ │ │ │ ├── TFT_ArcFill │ │ │ │ │ └── TFT_ArcFill.ino │ │ │ │ ├── TFT_Char_times │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ ├── TFT_Clock │ │ │ │ │ └── TFT_Clock.ino │ │ │ │ ├── TFT_Clock_Digital │ │ │ │ │ └── TFT_Clock_Digital.ino │ │ │ │ ├── TFT_Custom_Fonts │ │ │ │ │ └── TFT_Custom_Fonts.ino │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ ├── TFT_FillArcSpiral │ │ │ │ │ └── TFT_FillArcSpiral.ino │ │ │ │ ├── TFT_Float_Test │ │ │ │ │ └── TFT_Float_Test.ino │ │ │ │ ├── TFT_Mandlebrot │ │ │ │ │ └── TFT_Mandlebrot.ino │ │ │ │ ├── TFT_Matrix │ │ │ │ │ └── TFT_Matrix.ino │ │ │ │ ├── TFT_Meter_linear │ │ │ │ │ └── TFT_Meter_linear.ino │ │ │ │ ├── TFT_Meters │ │ │ │ │ └── TFT_Meters.ino │ │ │ │ ├── TFT_Pie_Chart │ │ │ │ │ └── TFT_Pie_Chart.ino │ │ │ │ ├── TFT_Pong │ │ │ │ │ └── TFT_Pong.ino │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ ├── TFT_Rainbow_one_lib │ │ │ │ │ └── TFT_Rainbow_one_lib.ino │ │ │ │ ├── TFT_Read_Reg │ │ │ │ │ └── TFT_Read_Reg.ino │ │ │ │ ├── TFT_Spiro │ │ │ │ │ └── TFT_Spiro.ino │ │ │ │ ├── TFT_Starfield │ │ │ │ │ └── TFT_Starfield.ino │ │ │ │ ├── TFT_String_Align │ │ │ │ │ └── TFT_String_Align.ino │ │ │ │ ├── TFT_Terminal │ │ │ │ │ └── TFT_Terminal.ino │ │ │ │ ├── TFT_graphicstest_PDQ │ │ │ │ │ └── TFT_graphicstest_PDQ.ino │ │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ │ └── UTFT_demo │ │ │ │ │ └── UTFT_demo.ino │ │ │ ├── 480 x 320 │ │ │ │ ├── Cellular_Automata │ │ │ │ │ └── Cellular_Automata.ino │ │ │ │ ├── Demo_3D_cube │ │ │ │ │ └── Demo_3D_cube.ino │ │ │ │ ├── Free_Font_Demo │ │ │ │ │ ├── Free_Font_Demo.ino │ │ │ │ │ └── Free_Fonts.h │ │ │ │ ├── Graph_2 │ │ │ │ │ └── Graph_2.ino │ │ │ │ ├── Keypad_480x320 │ │ │ │ │ └── Keypad_480x320.ino │ │ │ │ ├── TFT_Char_times │ │ │ │ │ └── TFT_Char_times.ino │ │ │ │ ├── TFT_Ellipse │ │ │ │ │ └── TFT_Ellipse.ino │ │ │ │ ├── TFT_Meter_4 │ │ │ │ │ └── TFT_Meter_4.ino │ │ │ │ ├── TFT_Meters │ │ │ │ │ └── TFT_Meters.ino │ │ │ │ ├── TFT_Padding_demo │ │ │ │ │ └── TFT_Padding_demo.ino │ │ │ │ ├── TFT_Print_Test │ │ │ │ │ └── TFT_Print_Test.ino │ │ │ │ ├── TFT_Rainbow480 │ │ │ │ │ └── TFT_Rainbow480.ino │ │ │ │ ├── TFT_String_Align │ │ │ │ │ └── TFT_String_Align.ino │ │ │ │ ├── TFT_flash_jpg │ │ │ │ │ ├── TFT_flash_jpg.ino │ │ │ │ │ ├── jpeg1.h │ │ │ │ │ ├── jpeg2.h │ │ │ │ │ ├── jpeg3.h │ │ │ │ │ └── jpeg4.h │ │ │ │ ├── TFT_graphicstest_one_lib │ │ │ │ │ └── TFT_graphicstest_one_lib.ino │ │ │ │ ├── TFT_ring_meter │ │ │ │ │ ├── Alert.h │ │ │ │ │ └── TFT_ring_meter.ino │ │ │ │ ├── Touch_Controller_Demo │ │ │ │ │ └── Touch_Controller_Demo.ino │ │ │ │ └── UTFT_Demo_480x320 │ │ │ │ │ └── UTFT_Demo_480x320.ino │ │ │ ├── DMA test │ │ │ │ ├── Bouncy_Circles │ │ │ │ │ └── Bouncy_Circles.ino │ │ │ │ ├── Flash_Jpg_DMA │ │ │ │ │ ├── Flash_Jpg_DMA.ino │ │ │ │ │ └── panda.h │ │ │ │ ├── SpriteRotatingCube │ │ │ │ │ └── SpriteRotatingCube.ino │ │ │ │ └── boing_ball │ │ │ │ │ ├── boing_ball.ino │ │ │ │ │ └── graphic.h │ │ │ ├── Generic │ │ │ │ ├── Animated_Eyes_1 │ │ │ │ │ ├── Animated_Eyes_1.ino │ │ │ │ │ ├── config.h │ │ │ │ │ ├── data │ │ │ │ │ │ ├── catEye.h │ │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ │ ├── doeEye.h │ │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ │ ├── goatEye.h │ │ │ │ │ │ ├── logo.h │ │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ │ ├── newtEye.h │ │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ │ ├── owlEye.h │ │ │ │ │ │ └── terminatorEye.h │ │ │ │ │ ├── eye_functions.ino │ │ │ │ │ ├── user.cpp │ │ │ │ │ ├── user_bat.cpp │ │ │ │ │ └── user_xmas.cpp │ │ │ │ ├── Animated_Eyes_2 │ │ │ │ │ ├── Animated_Eyes_2.ino │ │ │ │ │ ├── config.h │ │ │ │ │ ├── data │ │ │ │ │ │ ├── catEye.h │ │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ │ ├── doeEye.h │ │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ │ ├── goatEye.h │ │ │ │ │ │ ├── logo.h │ │ │ │ │ │ ├── naugaEye.h │ │ │ │ │ │ ├── newtEye.h │ │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ │ ├── owlEye.h │ │ │ │ │ │ └── terminatorEye.h │ │ │ │ │ ├── eye_functions.ino │ │ │ │ │ ├── user.cpp │ │ │ │ │ ├── user_bat.cpp │ │ │ │ │ ├── user_xmas.cpp │ │ │ │ │ └── wiring.ino │ │ │ │ ├── ESP32_SDcard_jpeg │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── Baboon40.jpg │ │ │ │ │ │ ├── EagleEye.jpg │ │ │ │ │ │ ├── Mouse480.jpg │ │ │ │ │ │ └── lena20k.jpg │ │ │ │ │ └── ESP32_SDcard_jpeg.ino │ │ │ │ ├── ESP8266_uncannyEyes │ │ │ │ │ ├── ESP8266_uncannyEyes.ino │ │ │ │ │ ├── defaultEye.h │ │ │ │ │ ├── dragonEye.h │ │ │ │ │ ├── goatEye.h │ │ │ │ │ ├── noScleraEye.h │ │ │ │ │ └── screenshotToConsole.ino │ │ │ │ ├── Gradient_Fill │ │ │ │ │ └── Gradient_Fill.ino │ │ │ │ ├── Local_Custom_Fonts │ │ │ │ │ ├── Local_Custom_Fonts.ino │ │ │ │ │ └── MyFont.h │ │ │ │ ├── On_Off_Button │ │ │ │ │ └── On_Off_Button.ino │ │ │ │ ├── TFT_Button_Label_Datum │ │ │ │ │ └── TFT_Button_Label_Datum.ino │ │ │ │ ├── TFT_Flash_Bitmap │ │ │ │ │ ├── Alert.h │ │ │ │ │ ├── Close.h │ │ │ │ │ ├── Info.h │ │ │ │ │ └── TFT_Flash_Bitmap.ino │ │ │ │ ├── TFT_SPIFFS_BMP │ │ │ │ │ ├── BMP_functions.ino │ │ │ │ │ ├── TFT_SPIFFS_BMP.ino │ │ │ │ │ └── data │ │ │ │ │ │ └── parrot.bmp │ │ │ │ ├── TFT_Screen_Capture │ │ │ │ │ ├── TFT_Screen_Capture.ino │ │ │ │ │ ├── processing_sketch.ino │ │ │ │ │ └── screenServer.ino │ │ │ │ ├── Touch_calibrate │ │ │ │ │ └── Touch_calibrate.ino │ │ │ │ ├── Viewport_Demo │ │ │ │ │ ├── Viewport_Demo.ino │ │ │ │ │ └── Viewport_commands.ino │ │ │ │ ├── Viewport_graphicstest │ │ │ │ │ └── Viewport_graphicstest.ino │ │ │ │ ├── alphaBlend_Test │ │ │ │ │ └── alphaBlend_Test.ino │ │ │ │ └── drawXBitmap │ │ │ │ │ ├── drawXBitmap.ino │ │ │ │ │ └── xbm.h │ │ │ ├── PNG Images │ │ │ │ ├── Flash_PNG │ │ │ │ │ ├── Flash_PNG.ino │ │ │ │ │ └── panda.h │ │ │ │ ├── LittleFS_PNG │ │ │ │ │ ├── LittleFS_PNG.ino │ │ │ │ │ ├── PNG_FS_Support.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── EagleEye.png │ │ │ │ │ │ └── panda.png │ │ │ │ └── LittleFS_PNG_DMA │ │ │ │ │ ├── LittleFS_PNG_DMA.ino │ │ │ │ │ ├── PNG_FS_Support.ino │ │ │ │ │ └── data │ │ │ │ │ ├── EagleEye.png │ │ │ │ │ └── panda.png │ │ │ ├── Smooth Fonts │ │ │ │ ├── FLASH_Array │ │ │ │ │ ├── Font_Demo_1_Array │ │ │ │ │ │ ├── Font_Demo_1_Array.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ │ ├── Font_Demo_2_Array │ │ │ │ │ │ ├── Font_Demo_2_Array.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ │ ├── Font_Demo_3_Array │ │ │ │ │ │ ├── Font_Demo_3_Array.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ └── NotoSansMonoSCB20.h │ │ │ │ │ ├── Font_Demo_4_Array │ │ │ │ │ │ ├── Font_Demo_4_Array.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ └── NotoSansBold36.h │ │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ │ └── Print_Smooth_Font.ino │ │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ └── Smooth_font_gradient.ino │ │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ │ ├── NotoSansBold15.h │ │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ │ └── Smooth_font_reading_TFT.ino │ │ │ │ │ └── Unicode_test │ │ │ │ │ │ ├── Final_Frontier_28.h │ │ │ │ │ │ ├── Latin_Hiragana_24.h │ │ │ │ │ │ ├── Unicode_Test_72.h │ │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ │ ├── LittleFS │ │ │ │ │ ├── Font_Demo_1 │ │ │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ ├── Font_Demo_2 │ │ │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ ├── Font_Demo_3 │ │ │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ │ ├── Font_Demo_4 │ │ │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ │ │ ├── Notes.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ └── Unicode_test │ │ │ │ │ │ ├── LittleFS_functions.ino │ │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ │ ├── SD_Card │ │ │ │ │ └── ESP32_Smooth_Font_SD │ │ │ │ │ │ ├── ESP32_Smooth_Font_SD.ino │ │ │ │ │ │ └── data │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ └── SPIFFS │ │ │ │ │ ├── Font_Demo_1 │ │ │ │ │ ├── Font_Demo_1.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ ├── Font_Demo_2 │ │ │ │ │ ├── Font_Demo_2.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ ├── Font_Demo_3 │ │ │ │ │ ├── Font_Demo_3.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ ├── NotoSansBold36.vlw │ │ │ │ │ │ └── NotoSansMonoSCB20.vlw │ │ │ │ │ ├── Font_Demo_4 │ │ │ │ │ ├── Font_Demo_4.ino │ │ │ │ │ ├── Notes.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ ├── Print_Smooth_Font │ │ │ │ │ ├── Print_Smooth_Font.ino │ │ │ │ │ └── data │ │ │ │ │ │ └── Final-Frontier-28.vlw │ │ │ │ │ ├── Smooth_font_gradient │ │ │ │ │ ├── Smooth_font_gradient.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ ├── Smooth_font_reading_TFT │ │ │ │ │ ├── Smooth_font_reading_TFT.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── NotoSansBold15.vlw │ │ │ │ │ │ └── NotoSansBold36.vlw │ │ │ │ │ └── Unicode_test │ │ │ │ │ ├── SPIFFS_functions.ino │ │ │ │ │ ├── Unicode_test.ino │ │ │ │ │ └── data │ │ │ │ │ ├── Final-Frontier-28.vlw │ │ │ │ │ ├── Latin-Hiragana-24.vlw │ │ │ │ │ └── Unicode-Test-72.vlw │ │ │ ├── Smooth Graphics │ │ │ │ ├── Anti-aliased_Clock │ │ │ │ │ ├── Anti-aliased_Clock.ino │ │ │ │ │ ├── NTP_Time.h │ │ │ │ │ └── NotoSansBold15.h │ │ │ │ └── Smooth_Graphics_Demo │ │ │ │ │ └── Smooth_Graphics_Demo.ino │ │ │ ├── Sprite │ │ │ │ ├── Animated_dial │ │ │ │ │ ├── Animated_dial.ino │ │ │ │ │ ├── NotoSansBold36.h │ │ │ │ │ ├── data │ │ │ │ │ │ └── dial.jpg │ │ │ │ │ └── dial.h │ │ │ │ ├── One_bit_Sprite_Demo │ │ │ │ │ └── One_bit_Sprite_Demo.ino │ │ │ │ ├── One_bit_Yin_Yang │ │ │ │ │ └── One_bit_Yin_Yang.ino │ │ │ │ ├── Orrery │ │ │ │ │ ├── Orrery.ino │ │ │ │ │ ├── astronomy.c │ │ │ │ │ └── astronomy.h │ │ │ │ ├── Rotated_Sprite_1 │ │ │ │ │ └── Rotated_Sprite_1.ino │ │ │ │ ├── Rotated_Sprite_2 │ │ │ │ │ └── Rotated_Sprite_2.ino │ │ │ │ ├── Rotated_Sprite_3 │ │ │ │ │ ├── Rotated_Sprite_3.ino │ │ │ │ │ └── data │ │ │ │ │ │ ├── EagleEye.jpg │ │ │ │ │ │ └── Eye_80x64.jpg │ │ │ │ ├── Sprite_RLE_Font_test │ │ │ │ │ └── Sprite_RLE_Font_test.ino │ │ │ │ ├── Sprite_TFT_Rainbow │ │ │ │ │ └── Sprite_TFT_Rainbow.ino │ │ │ │ ├── Sprite_draw │ │ │ │ │ └── Sprite_draw.ino │ │ │ │ ├── Sprite_draw_4bit │ │ │ │ │ └── Sprite_draw_4bit.ino │ │ │ │ ├── Sprite_image_4bit │ │ │ │ │ ├── Sprite_image_4bit.ino │ │ │ │ │ ├── sample_images.h │ │ │ │ │ └── starImage.cpp │ │ │ │ ├── Sprite_scroll │ │ │ │ │ └── Sprite_scroll.ino │ │ │ │ ├── Sprite_scroll_16bit │ │ │ │ │ └── Sprite_scroll_16bit.ino │ │ │ │ ├── Sprite_scroll_1bit │ │ │ │ │ └── Sprite_scroll_1bit.ino │ │ │ │ ├── Sprite_scroll_4bit │ │ │ │ │ └── Sprite_scroll_4bit.ino │ │ │ │ ├── Sprite_scroll_8bit │ │ │ │ │ └── Sprite_scroll_8bit.ino │ │ │ │ ├── Sprite_scroll_wrap_1bit │ │ │ │ │ └── Sprite_scroll_wrap_1bit.ino │ │ │ │ ├── Transparent_Sprite_Demo │ │ │ │ │ └── Transparent_Sprite_Demo.ino │ │ │ │ └── Transparent_Sprite_Demo_4bit │ │ │ │ │ └── Transparent_Sprite_Demo_4bit.ino │ │ │ ├── Test and diagnostics │ │ │ │ ├── Colour_Test │ │ │ │ │ └── Colour_Test.ino │ │ │ │ ├── Read_User_Setup │ │ │ │ │ └── Read_User_Setup.ino │ │ │ │ ├── TFT_ReadWrite_Test │ │ │ │ │ └── TFT_ReadWrite_Test.ino │ │ │ │ └── Test_Touch_Controller │ │ │ │ │ └── Test_Touch_Controller.ino │ │ │ └── ePaper │ │ │ │ └── Floyd_Steinberg │ │ │ │ ├── EPD_Support.h │ │ │ │ ├── Floyd_Steinberg.ino │ │ │ │ ├── Floyd_Steinberg_BMP.ino │ │ │ │ ├── SPIFFS.ino │ │ │ │ └── data │ │ │ │ ├── TestCard.bmp │ │ │ │ └── Tiger.bmp │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── license.txt │ │ │ └── micky_commit.patch │ │ ├── platformio.ini │ │ ├── src │ │ └── main.cpp │ │ └── test │ │ └── README └── YD-ESP32-S3 │ ├── Readme.md │ ├── doc │ ├── YD-ESP32-S3-DevBoard_Overview.jpg │ ├── YD-ESP32-S3_DevBoard.JPG │ ├── YD-ESP32-S3_DevBoard2.jpg │ ├── YD-ESP32-S3_DevBoard_Hardware.JPG │ ├── YD-ESP32-S3_DevBoard_PinLayout.jpg │ ├── YD-ESP32-S3_DevBoard_Size+Layout.JPG │ ├── YD-ESP32-S3_DevBoard_Top+Bottom.JPG │ ├── YD-ESP32-S3_DevBoard_Variants.JPG │ └── YD-ESP32-S3_Schematic.pdf │ └── examples │ ├── Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG │ ├── .gitignore │ ├── Build.log │ ├── add_tasks.py │ ├── debug_console.log │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── main.cpp │ └── test │ │ └── README │ ├── Test-YD-ESP32-S3-N8R2_RAM-PSRAM │ ├── Build.log │ ├── Fuses.log │ ├── add_tasks.py │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── main.cpp │ └── test │ │ └── README │ ├── Test-YD-ESP32-S3-N8R2_RGB-LED │ ├── .gitignore │ ├── Build.log │ ├── Fuses.log │ ├── add_tasks.py │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── main.cpp │ └── test │ │ └── README │ └── Test-YD-ESP32-S3-N8R2_WiFi │ ├── .gitignore │ ├── Build.log │ ├── Serial Output.log │ ├── add_tasks.py │ ├── include │ └── README │ ├── lib │ └── README │ ├── platformio.ini │ ├── src │ └── main.cpp │ └── test │ └── README ├── debugging ├── DebugSession_using_ESP32-S3_builtin_JTAG.jpg ├── Debugging_via_2nd_USB_port.jpg ├── Debugging_with_JTAG_adapter-block-diagram.jpg ├── ESP-Prog_wiring_to_ESP32_dev_board.jpg ├── Installation_WinUSB_for_builtin_JTAG_espressif_driver.jpg ├── JTAG adapter docs │ ├── ESP-Prog-Wiring to ESP32 Dev Board.jpg │ ├── ESP-Prog.jpg │ └── ESP32-PROG_V2.1_Schematic.pdf ├── JTAG adapter driver │ ├── idf-driver-esp32-S3-usb-jtag-2021-07-15.zip │ └── zadig-2.7.exe.zip ├── OpenOCD_running_GDB_not_started.JPG ├── OpenOCD_starting_via_command_prompt.jpg ├── Readme.md ├── TerminalOutput_openocd_started_gdb_connected.log ├── Wiring test set with ESP32 debug module.jpg └── Zadig_assigns_driver_to_ESP32-Prog.jpg ├── debugging_without_JTAG └── Readme.md └── reset_and_software_upload ├── ESP32-T_board_modified.jpg ├── ESP32_put_into_upload_mode.jpg ├── ESP32_reset_and_upload_circuitry.jpg ├── ESP32_reset_and_upload_circuitry_only.jpg ├── Monitor_Task_started(PlatformIO)-reset.jpg ├── README.md ├── Reset-Button-pressed.jpg ├── Reset-via-USB.jpg ├── Serial_Monitor-automatic_reconnection.jpg └── Software_Upload_Esptool(PlatformIO).jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/.gitattributes -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/Comparison_Espressif-ESP32-S2-C3-S3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/Comparison_Espressif-ESP32-S2-C3-S3.pdf -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP-Prog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP-Prog.jpg -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP32-S3-WROOM-1(U)_Variants.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP32-S3-WROOM-1(U)_Variants.jpg -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP32-S3-Wroom-1_Wroom-1u_datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP32-S3-Wroom-1_Wroom-1u_datasheet.pdf -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP32-S3_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP32-S3_Datasheet.pdf -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP32-S3_Hardware_design_guidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP32-S3_Hardware_design_guidelines.pdf -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP32-S3_Technical_reference_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP32-S3_Technical_reference_manual.pdf -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP32-S3_USB Serial_JTAG Controller Console.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP32-S3_USB Serial_JTAG Controller Console.pdf -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP32_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP32_Datasheet.pdf -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP32_Hardware_design_guidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP32_Hardware_design_guidelines.pdf -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/ESP32_Technical_reference_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/ESP32_Technical_reference_manual.pdf -------------------------------------------------------------------------------- /ESP32_specs_and_manuals/Xtensa_Instruction_Set_Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/ESP32_specs_and_manuals/Xtensa_Instruction_Set_Architecture.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/README.md -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/doc/LILYGO-ESP32-1.14-Display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/doc/LILYGO-ESP32-1.14-Display.jpg -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/doc/LILYGO-ESP32-1.14-Display_Bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/doc/LILYGO-ESP32-1.14-Display_Bottom.jpg -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/doc/LILYGO-ESP32-1.14-Display_Pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/doc/LILYGO-ESP32-1.14-Display_Pinout.jpg -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/doc/LILYGO-TTGO-T-DISPLAY-ESP32-TFT Schematic V1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/doc/LILYGO-TTGO-T-DISPLAY-ESP32-TFT Schematic V1.1.pdf -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/ArduinoIDE/Test-ESP32-TTGO_Display/Test-ESP32-TTGO_Display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/ArduinoIDE/Test-ESP32-TTGO_Display/Test-ESP32-TTGO_Display.ino -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/ArduinoIDE/Test-ESP32-TTGO_Display/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/ArduinoIDE/Test-ESP32-TTGO_Display/bmp.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/include/README -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/include/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/include/bmp.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/CHANGELOG.md -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/LICENSE -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/README.md -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/keywords.txt -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/library.json -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/library.properties -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/src/Button2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/src/Button2.cpp -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/src/Button2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/Button2/src/Button2.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/README -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Button.cpp -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Button.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Sprite.cpp -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Sprite.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Touch.cpp -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Extensions/Touch.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font32rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font32rle.c -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font32rle.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font64rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font64rle.c -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font64rle.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font72rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font72rle.c -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font72rle.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font72x53rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font72x53rle.c -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font72x53rle.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font7srle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font7srle.c -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/Font7srle.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/GFXFF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/GFXFF/license.txt -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/GFXFF/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/GFXFF/print.txt -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Fonts/glcdfont.c -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/README.md -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Tools/RPi_TFT_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/Tools/RPi_TFT_mod.png -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/User_Setup.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/User_Setup_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/User_Setup_Select.h -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/library.json -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/library.properties -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/lib/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-1.14-Display-DevBoard/examples/PlatformIO/Test-ESP32-TTGO_Display/test/README -------------------------------------------------------------------------------- /boards/ESP32-CAM/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/Readme.md -------------------------------------------------------------------------------- /boards/ESP32-CAM/doc/ESP32-CAM-MB sandwich board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/doc/ESP32-CAM-MB sandwich board.jpg -------------------------------------------------------------------------------- /boards/ESP32-CAM/doc/ESP32-CAM-MB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/doc/ESP32-CAM-MB.jpg -------------------------------------------------------------------------------- /boards/ESP32-CAM/doc/ESP32-CAM-Schematic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/doc/ESP32-CAM-Schematic.jpg -------------------------------------------------------------------------------- /boards/ESP32-CAM/doc/ESP32-CAM-USB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/doc/ESP32-CAM-USB.jpg -------------------------------------------------------------------------------- /boards/ESP32-CAM/doc/ESP32-CAM-USB_top_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/doc/ESP32-CAM-USB_top_bottom.jpg -------------------------------------------------------------------------------- /boards/ESP32-CAM/doc/ESP32-CAM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/doc/ESP32-CAM.jpg -------------------------------------------------------------------------------- /boards/ESP32-CAM/doc/ESP32-CAM_Pinout.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/doc/ESP32-CAM_Pinout.JPG -------------------------------------------------------------------------------- /boards/ESP32-CAM/doc/ESP32-CAM_Programming.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/doc/ESP32-CAM_Programming.JPG -------------------------------------------------------------------------------- /boards/ESP32-CAM/doc/Setting_XCLK_via_web_interfaceJPG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/doc/Setting_XCLK_via_web_interfaceJPG.jpg -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/Build.log -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/include/README -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/include/camera_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/include/camera_index.h -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/include/camera_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/include/camera_pins.h -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/lib/README -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/src/app_httpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/src/app_httpd.cpp -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM-MB_Camera/test/README -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/include/README -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/include/camera_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/include/camera_index.h -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/include/camera_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/include/camera_pins.h -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/lib/README -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/src/app_httpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/src/app_httpd.cpp -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_Camera/test/README -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/Serial Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/Serial Output.log -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/include/README -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/lib/README -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-CAM/examples/Test-ESP32-CAM_HW-Info/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/Readme.md -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/doc/ESP32-DevKit-V1-ArduinoIDE-Settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/doc/ESP32-DevKit-V1-ArduinoIDE-Settings.jpg -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/doc/ESP32-DevKit-V1-Pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/doc/ESP32-DevKit-V1-Pinout.jpg -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/doc/ESP32-DevKit-V1-Schematic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/doc/ESP32-DevKit-V1-Schematic.jpg -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/doc/ESP32-Devkit-V1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/doc/ESP32-Devkit-V1.jpg -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-DAC-Sinus/Test-DevKit-V1-DAC-Sinus.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-DAC-Sinus/Test-DevKit-V1-DAC-Sinus.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-DAC-Voltage/Test-DevKit-V1-DAC-Voltage.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-DAC-Voltage/Test-DevKit-V1-DAC-Voltage.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-HW-Info/Test-DevKit-V1-HW-Info.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-HW-Info/Test-DevKit-V1-HW-Info.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-LED/Test-DevKit-V1-LED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-LED/Test-DevKit-V1-LED.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Partitions/Test-DevKit-V1-Partitions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Partitions/Test-DevKit-V1-Partitions.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-SD-Card-1/Test-DevKit-V1-SD-Card-1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-SD-Card-1/Test-DevKit-V1-SD-Card-1.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-SD-Card-2/Test-DevKit-V1-SD-Card-2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-SD-Card-2/Test-DevKit-V1-SD-Card-2.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Semaphore-1/Test-DevKit-V1-Semaphore-1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Semaphore-1/Test-DevKit-V1-Semaphore-1.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Semaphore-2/Test-DevKit-V1-Semaphore-2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Semaphore-2/Test-DevKit-V1-Semaphore-2.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Timer/Test-DevKit-V1-Timer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Timer/Test-DevKit-V1-Timer.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Watchdog-1/Test-DevKit-V1-Watchdog-1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Watchdog-1/Test-DevKit-V1-Watchdog-1.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Watchdog-2/Test-DevKit-V1-Watchdog-2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Watchdog-2/Test-DevKit-V1-Watchdog-2.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Watchdog-3/Test-DevKit-V1-Watchdog-3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Watchdog-3/Test-DevKit-V1-Watchdog-3.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Watchdog-4/Test-DevKit-V1-Watchdog-4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/ArduinoIDE/Test-DevKit-V1-Watchdog-4/Test-DevKit-V1-Watchdog-4.ino -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Sinus/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-DAC-Voltage/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/Serial_Output_file_to_big.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/Serial_Output_file_to_big.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/Serial_Output_update_error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/Serial_Output_update_error.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/firmware.bin -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-FW-Update-per-SD-Card/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/Serial Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/Serial Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-HW-Info/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-LED/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_bare_minimum_2MB.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_bare_minimum_2MB.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_default.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_default.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_default_ffat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_default_ffat.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_huge_app.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_huge_app.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_min_spiffs.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_min_spiffs.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_no_ota.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_no_ota.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_noota_ffat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/Serial_Output_noota_ffat.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Partitions/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-1/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-SD-Card-2/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-1/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Semaphore-2/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Timer/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/Serial_Output_loop_starved.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/Serial_Output_loop_starved.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/Serial_Output_watchdog_triggers.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/Serial_Output_watchdog_triggers.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-1/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/Serial_Output_watchdog_triggers.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/Serial_Output_watchdog_triggers.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-2/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-3/test/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/Build.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/include/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/lib/README -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-DevKit-V1/examples/PlatformIO/Test-DevKit-V1-Watchdog-4/test/README -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/Readme.md -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/doc/GC9107 DataSheet V1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/doc/GC9107 DataSheet V1.2.pdf -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Bottom.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Pinout.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Schematic.pdf -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Size.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Size.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Specification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Specification.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Top+Bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/doc/LILYGO-ESP32-S3-0.85-Display_Top+Bottom.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/Build.log -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/Serial Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/Serial Output.log -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/include/README -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/lib/README -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_WiFi/test/README -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/Build.log -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/doc/Display_example_factory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/doc/Display_example_factory.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/doc/logo.png -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/README -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/image_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/image_logo.h -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/lv_conf.h -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/lvgl_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/lvgl_gui.h -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/pin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/pin_config.h -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/tft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/tft.h -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/tft_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/include/tft_driver.h -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/lib/README -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/clock_bg_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/clock_bg_img.c -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/clock_hour_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/clock_hour_img.c -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/clock_min_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/clock_min_img.c -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/clock_sec_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/clock_sec_img.c -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/duck_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/duck_gif.c -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/lvgl_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/lvgl_gui.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/tft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/tft.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/tft_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/src/tft_driver.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_factory/test/README -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/Build.log -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/Fuses.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/Fuses.log -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/GC9A01_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/GC9A01_Rotation.h -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/include/README -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/include/image_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/include/image_logo.h -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/include/pin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/include/pin_config.h -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/lib/README -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-0.85-Display-DevBoard/examples/Test-ESP32-S3-0.85inch_tft/test/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/Readme.md -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display 2.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display_Pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display_Pinout.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display_Schematic..pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display_Schematic..pdf -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display_Size.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display_Size.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display_Top+Bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/doc/LILYGO-ESP32-S3-1.9-Display_Top+Bottom.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/Build.log -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/Fuses.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/Fuses.log -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/include/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/lib/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_RAM-PSRAM/test/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/Build.log -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/include/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/lib/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_WiFi/test/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/3D_file/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/3D_file/t_display_s3.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/3D_file/t_display_s3.stp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/Build.log -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/Display_example_factory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/Display_example_factory.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/cstxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/cstxx.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/factory_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/factory_gui.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/lv_conf.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/pin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/include/pin_config.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/lib/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/cstxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/cstxx.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/factory_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/factory_gui.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/font_Alibaba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/font_Alibaba.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/lilygo1_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/lilygo1_gif.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/lilygo2_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/lilygo2_gif.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_factory/test/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Build.log -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Display_after_setup().jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Display_after_setup().jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Display_snapshot_loop() 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Display_snapshot_loop() 1.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Display_snapshot_loop() 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Display_snapshot_loop() 2.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Display_snapshot_loop() 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Display_snapshot_loop() 3.jpg -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Serial_Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/Serial_Output.log -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/add_tasks.py -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/include/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/include/img_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/include/img_logo.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/include/pin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/include/pin_config.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/README -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/.gitattributes -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/.gitignore -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/CMakeLists.txt -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Button.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Button.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Smooth_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Smooth_font.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Smooth_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Smooth_font.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Sprite.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Sprite.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Touch.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Extensions/Touch.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Custom/Roboto_Thin_24.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Custom/Satisfy_24.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Custom/Yellowtail_32.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font16.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font16.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font32rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font32rle.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font32rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font32rle.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font64rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font64rle.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font64rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font64rle.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font72rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font72rle.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font72rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font72rle.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font72x53rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font72x53rle.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font72x53rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font72x53rle.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font7srle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font7srle.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font7srle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/Font7srle.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeMono12pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeMono18pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeMono24pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeMono9pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSans12pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSans18pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSans24pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSans9pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/TomThumb.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/gfxfont.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/license.txt -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/GFXFF/print.txt -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Fonts/glcdfont.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Kconfig -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_C3.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP32_S3.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_ESP8266.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_Generic.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_RP2040.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.c -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/TFT_eSPI_STM32.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/pio_SPI.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/pio_SPI.pio -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/pio_SPI.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/pio_SPI.pio.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/pio_SPI_18bit.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/pio_SPI_18bit.pio -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/pio_SPI_18bit.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Processors/pio_SPI_18bit.pio.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/README.md -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/README.txt -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/EPD_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/GC9A01_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/GC9A01_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/GC9A01_Rotation.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357B_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357B_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357B_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357B_Rotation.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357C_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357C_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357C_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357C_Rotation.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357D_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357D_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357D_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/HX8357D_Rotation.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9163_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9163_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9163_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9163_Rotation.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9225_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9225_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9225_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9225_Rotation.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9341_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9341_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9341_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9341_Rotation.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9481_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9481_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9481_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9481_Rotation.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9486_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9486_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ILI9488_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/R61581_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/R61581_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/RM68120_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/RM68140_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/S6D02A1_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/SSD1351_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/SSD1963_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7735_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7735_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7789_2_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7789_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7789_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7796_Defines.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_Drivers/ST7796_Init.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_config.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_eSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_eSPI.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_eSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/TFT_eSPI.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/Tools/bmp2array4bit/star.bmp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setup.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setup_Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setup_Select.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup17_ePaper.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup18_ST7789.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup1_ILI9341.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup24_ST7789.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup2_ST7735.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup3_ILI9163.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup43_ST7735.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup47_ST7735.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/User_Setups/Setup4_S6D02A1.h -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/keywords.txt -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/library.json -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/library.properties -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/license.txt -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/micky_commit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/lib/TFT_eSPI/micky_commit.patch -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/platformio.ini -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/src/main.cpp -------------------------------------------------------------------------------- /boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/ESP32-S3-1.9-Display-DevBoard/examples/Test-ESP32-S3-1.9inch_tft/test/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/Readme.md -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/doc/YD-ESP32-S3-DevBoard_Overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/doc/YD-ESP32-S3-DevBoard_Overview.jpg -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard.JPG -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard2.jpg -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_Hardware.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_Hardware.JPG -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_PinLayout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_PinLayout.jpg -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_Size+Layout.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_Size+Layout.JPG -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_Top+Bottom.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_Top+Bottom.JPG -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_Variants.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/doc/YD-ESP32-S3_DevBoard_Variants.JPG -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/doc/YD-ESP32-S3_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/doc/YD-ESP32-S3_Schematic.pdf -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/.gitignore -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/Build.log -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/add_tasks.py -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/debug_console.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/debug_console.log -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/include/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/lib/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/platformio.ini -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/src/main.cpp -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_Debug_via_builtin_JTAG/test/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/Build.log -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/Fuses.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/Fuses.log -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/add_tasks.py -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/include/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/lib/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/platformio.ini -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/src/main.cpp -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RAM-PSRAM/test/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/.gitignore -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/Build.log -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/Fuses.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/Fuses.log -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/add_tasks.py -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/include/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/lib/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/platformio.ini -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/src/main.cpp -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_RGB-LED/test/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/.gitignore -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/Build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/Build.log -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/Serial Output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/Serial Output.log -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/add_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/add_tasks.py -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/include/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/lib/README -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/platformio.ini -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/src/main.cpp -------------------------------------------------------------------------------- /boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/boards/YD-ESP32-S3/examples/Test-YD-ESP32-S3-N8R2_WiFi/test/README -------------------------------------------------------------------------------- /debugging/DebugSession_using_ESP32-S3_builtin_JTAG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/DebugSession_using_ESP32-S3_builtin_JTAG.jpg -------------------------------------------------------------------------------- /debugging/Debugging_via_2nd_USB_port.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/Debugging_via_2nd_USB_port.jpg -------------------------------------------------------------------------------- /debugging/Debugging_with_JTAG_adapter-block-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/Debugging_with_JTAG_adapter-block-diagram.jpg -------------------------------------------------------------------------------- /debugging/ESP-Prog_wiring_to_ESP32_dev_board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/ESP-Prog_wiring_to_ESP32_dev_board.jpg -------------------------------------------------------------------------------- /debugging/Installation_WinUSB_for_builtin_JTAG_espressif_driver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/Installation_WinUSB_for_builtin_JTAG_espressif_driver.jpg -------------------------------------------------------------------------------- /debugging/JTAG adapter docs/ESP-Prog-Wiring to ESP32 Dev Board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/JTAG adapter docs/ESP-Prog-Wiring to ESP32 Dev Board.jpg -------------------------------------------------------------------------------- /debugging/JTAG adapter docs/ESP-Prog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/JTAG adapter docs/ESP-Prog.jpg -------------------------------------------------------------------------------- /debugging/JTAG adapter docs/ESP32-PROG_V2.1_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/JTAG adapter docs/ESP32-PROG_V2.1_Schematic.pdf -------------------------------------------------------------------------------- /debugging/JTAG adapter driver/idf-driver-esp32-S3-usb-jtag-2021-07-15.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/JTAG adapter driver/idf-driver-esp32-S3-usb-jtag-2021-07-15.zip -------------------------------------------------------------------------------- /debugging/JTAG adapter driver/zadig-2.7.exe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/JTAG adapter driver/zadig-2.7.exe.zip -------------------------------------------------------------------------------- /debugging/OpenOCD_running_GDB_not_started.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/OpenOCD_running_GDB_not_started.JPG -------------------------------------------------------------------------------- /debugging/OpenOCD_starting_via_command_prompt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/OpenOCD_starting_via_command_prompt.jpg -------------------------------------------------------------------------------- /debugging/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/Readme.md -------------------------------------------------------------------------------- /debugging/TerminalOutput_openocd_started_gdb_connected.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/TerminalOutput_openocd_started_gdb_connected.log -------------------------------------------------------------------------------- /debugging/Wiring test set with ESP32 debug module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/Wiring test set with ESP32 debug module.jpg -------------------------------------------------------------------------------- /debugging/Zadig_assigns_driver_to_ESP32-Prog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging/Zadig_assigns_driver_to_ESP32-Prog.jpg -------------------------------------------------------------------------------- /debugging_without_JTAG/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/debugging_without_JTAG/Readme.md -------------------------------------------------------------------------------- /reset_and_software_upload/ESP32-T_board_modified.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/ESP32-T_board_modified.jpg -------------------------------------------------------------------------------- /reset_and_software_upload/ESP32_put_into_upload_mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/ESP32_put_into_upload_mode.jpg -------------------------------------------------------------------------------- /reset_and_software_upload/ESP32_reset_and_upload_circuitry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/ESP32_reset_and_upload_circuitry.jpg -------------------------------------------------------------------------------- /reset_and_software_upload/ESP32_reset_and_upload_circuitry_only.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/ESP32_reset_and_upload_circuitry_only.jpg -------------------------------------------------------------------------------- /reset_and_software_upload/Monitor_Task_started(PlatformIO)-reset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/Monitor_Task_started(PlatformIO)-reset.jpg -------------------------------------------------------------------------------- /reset_and_software_upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/README.md -------------------------------------------------------------------------------- /reset_and_software_upload/Reset-Button-pressed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/Reset-Button-pressed.jpg -------------------------------------------------------------------------------- /reset_and_software_upload/Reset-via-USB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/Reset-via-USB.jpg -------------------------------------------------------------------------------- /reset_and_software_upload/Serial_Monitor-automatic_reconnection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/Serial_Monitor-automatic_reconnection.jpg -------------------------------------------------------------------------------- /reset_and_software_upload/Software_Upload_Esptool(PlatformIO).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellobyte/ESP32-DevBoards-Getting-Started/HEAD/reset_and_software_upload/Software_Upload_Esptool(PlatformIO).jpg --------------------------------------------------------------------------------