Skip to content

Xinyuan-LilyGO/LilyGo-AMOLED-Series

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

🌟LilyGO AMOLED Series🌟

PlatformIO CI Arduino CI arduino-library-badge PlatformIO Registry

News

  • LilyGo-AMOLED-Series depends on lvgl v8.3.x version. Currently lvgl has released lvgl v9.0 version. When compilation error occurs, please check whether lvgl belongs to v8.3.x
  • LilyGo-AMOLED-Series esp-idf version example, please jump to this LilyGo-Display-IDF

1️⃣Support Product

Product(PinMap) SOC Flash PSRAM Resolution Size
T-Display-AMOLED-Lite ESP32-S3R8 16MB 8MB(OPI) 194x368 1.47 Inch
T-Display-S3 AMOLED ESP32-S3R8 16MB 8MB(OPI) 240x536 1.91 Inch
T4-S3 ESP32-S3R8 16MB 8MB(OPI) 450x600 2.41 Inch
Current consumption Working current sleep current sleep mode
T-Display-AMOLED-Lite (240MHz) WiFi On 90~230+ mA About 1.1mA timer wakeup
T-Display-S3 AMOLED (240MHz) WiFi On 90~230+ mA About 160uA external wakeup
T4-S3 (240MHz) WiFi On 90~230+ mA About 160uA external wakeup
  • This code supports T-Display-S3 AMOLED both touch and non-touch versions

2️⃣Examples

examples/
β”œβ”€β”€ Factory                             # Factory example
β”œβ”€β”€ AdjustBrightness                    # Adjust brightness example
β”œβ”€β”€ DS18x20_Temperature                 # OneWire example
β”œβ”€β”€ LumenMeter                          # 1.47-inch AMOLED Built-in Ambient Light Sensor Example
β”œβ”€β”€ LVGL_SD_Images                      # Display pictures saved in SD card
β”œβ”€β”€ Lvgl_Images                         # Screen color test
β”œβ”€β”€ PMU_ADC                             # PMU Voltage detection example , only support 1.47-inch AMOLED
β”œβ”€β”€ PMU_Interrupt                       # PMU interrupt example , only support 1.47-inch AMOLED
β”œβ”€β”€ CameraShield                        # Extern camera shield example, only supports 1.91 inches
β”œβ”€β”€ SPI_SDCard                          # External SD card example, SPI communication
β”œβ”€β”€ QWIIC_GPS_Shield                    # Extern GPS Shield example,use Serial communication
β”œβ”€β”€ QWIIC_HP303BSensor                  # Extern Temperature Pressure Sensor example,use Wire communication
β”œβ”€β”€ QWIIC_MAX3010X                      # External heart rate module,use Wire communication
β”œβ”€β”€ TFT_eSPI_Sprite                     # Use TFT_eSPI Sprite example
β”œβ”€β”€ TFT_eSPI_Sprite_ArcFill             # Use TFT_eSPI Sprite example
β”œβ”€β”€ TFT_eSPI_Sprite_graphicstest_small  # Use TFT_eSPI Sprite example
β”œβ”€β”€ TFT_eSPI_Sprite_RLE_Font            # Use TFT_eSPI Sprite example
β”œβ”€β”€ TFT_eSPI_Sprite_Rotation            # Screen rotation, only available for 1.91, 2.41 inches
β”œβ”€β”€ LVGL_Rotation                       # Screen rotation, only available for 1.91, 2.41 inches
β”œβ”€β”€ Touchpad                            # Touchpad example
└── lvgl                                # LVGL examples
    β”œβ”€β”€ event
    β”œβ”€β”€ get_started
    β”œβ”€β”€ layouts
    β”‚   β”œβ”€β”€ flex
    β”‚   └── grid
    β”œβ”€β”€ scroll
    β”œβ”€β”€ style
    β”œβ”€β”€ third_party
    β”‚   β”œβ”€β”€ ImageDecoder
    β”‚   └── gif
    └── widgets
        └── ...

3️⃣ PlatformIO Quick Start (Recommended)

  1. Install Visual Studio Code and Python
  2. Search for the PlatformIO plugin in the VisualStudioCode extension and install it.
  3. After the installation is complete, you need to restart VisualStudioCode
  4. After restarting VisualStudioCode, select File in the upper left corner of VisualStudioCode -> Open Folder -> select the LilyGO AMOLED Series directory
  5. Wait for the installation of third-party dependent libraries to complete
  6. Click on the platformio.ini file, and in the platformio column
  7. Uncomment one of the lines src_dir = xxxx to make sure only one line works
  8. Click the (βœ”) symbol in the lower left corner to compile
  9. Connect the board to the computer USB
  10. Click (β†’) to upload firmware
  11. Click (plug symbol) to monitor serial output
  12. If it cannot be written, or the USB device keeps flashing, please check the FAQ below

4️⃣ Install from Arduino Library Manager (recommended)

  1. Install Arduino IDE

  2. Install Arduino ESP32 V 2.0.5 or above and below V3.0

  3. Sketch -> Include Library -> Manage Libraries

  4. Library Search -> LilyGO AMOLED Series -> Install -> Install ALL

  5. Library Search -> lvgl -> v8.3.11 -> Install

  6. File -> Examples -> LilyGO AMOLED Series -> Any Examples

  7. Tools , Look at the picture to choose

    Arduino IDE Setting Value
    Board ESP32S3 Dev Module
    Port Your port
    USB CDC On Boot Enable
    CPU Frequency 240MHZ(WiFi)
    Core Debug Level None
    USB DFU On Boot Disable
    Erase All Flash Before Sketch Upload Disable
    Events Run On Core1
    Flash Mode QIO 80MHZ
    Flash Size 16MB(128Mb)
    Arduino Runs On Core1
    USB Firmware MSC On Boot Disable
    Partition Scheme 16M Flash(3M APP/9.9MB FATFS)
    PSRAM OPI PSRAM
    Upload Mode UART0/Hardware CDC
    Upload Speed 921600
    USB Mode CDC and JTAG
    • The options in bold are required, others are selected according to actual conditions.
  8. Select Port

  9. Click upload , Wait for compilation and writing to complete

  10. If it cannot be written, or the USB device keeps flashing, please check the FAQ below

5️⃣ Arduino IDE Manual installation (not recommended)

  1. Install Arduino IDE

  2. Install Arduino ESP32 V 2.0.5 or above and below V3.0

  3. Download LilyGO AMOLED Series , move to Arduino library folder (e.g. C:\Users\YourName\Documents\Arduino\libraries)

  4. Copy all folders in libdeps folder to Arduino library folder (e.g. C:\Users\YourName\Documents\Arduino\libraries)

  5. Open ArduinoIDE ,Tools , Make your selection according to the table below

    Arduino IDE Setting Value
    Board ESP32S3 Dev Module
    Port Your port
    USB CDC On Boot Enable
    CPU Frequency 240MHZ(WiFi)
    Core Debug Level None
    USB DFU On Boot Disable
    Erase All Flash Before Sketch Upload Disable
    Events Run On Core1
    Flash Mode QIO 80MHZ
    Flash Size 16MB(128Mb)
    Arduino Runs On Core1
    USB Firmware MSC On Boot Disable
    Partition Scheme 16M Flash(3M APP/9.9MB FATFS)
    PSRAM OPI PSRAM
    Upload Mode UART0/Hardware CDC
    Upload Speed 921600
    USB Mode CDC and JTAG
    • The options in bold are required, others are selected according to actual conditions.
  6. File -> Examples -> LilyGO AMOLED Series -> Any Examples

  7. Select Port

  8. Click upload , Wait for compilation and writing to complete

  9. If it cannot be written, or the USB device keeps flashing, please check the FAQ below

6️⃣ ESP32 basic examples

7️⃣ FAQ

  1. The board uses USB as the JTAG upload port. When printing serial port information on USB_CDC_ON_BOOT configuration needs to be turned on. If the port cannot be found when uploading the program or the USB has been used for other functions, the port does not appear. Please enter the upload mode manually.

    1. Connect the board via the USB cable
    2. Press and hold the BOOT button , While still pressing the BOOT button, press RST
    3. Release the RST
    4. Release the BOOT button
    5. Upload sketch
  2. If the above is invalid, burn the binary file to check whether the hardware is normal

  3. 1.47 inches AMOLED(T-Display-AMOLED-Lite) does not support hardware screen rotation function

  4. If you use external power supply instead of USBC, please turn off the CDC option. This is because the board will wait for USB access when it starts.

    • For Arduino IDE users, it can be turned off in the options , Please note that turning off USB CDC will turn off Serial redirection to USBC. At this time, you will not see any Serial message output when opening the port from USBC, but output from GPIO43 and GPIO44.
    Tools -> USB CDC On Boot -> Disable
    • For Platformio users, you can add the following compilation flags in the ini file
    build_flags =
        ; Enable -DARDUINO_USB_CDC_ON_BOOT will start printing and wait for terminal access during startup
        ; -DARDUINO_USB_CDC_ON_BOOT=1
    
        ; Enable -UARDUINO_USB_CDC_ON_BOOT will turn off printing and will not block when using the battery
        -UARDUINO_USB_CDC_ON_BOOT
  5. How to find the location of your own libraries, please see here

    • Windows: C:\Users\{username}\Documents\Arduino
    • macOS: /Users/{username}/Documents/Arduino
    • Linux: /home/{username}/Arduino

8️⃣ Resource

Product(PinMap) schematic Dimensions PCB 3D Shell
T-Display-AMOLED-Lite schematic DWG STP x
T-Display-S3 AMOLED schematic DWG STP STP
T4-S3 schematic DWG STP STP
T-Display-AMOLED-Lite datasheet
T-Display-S3 AMOLED datasheet
T4-S3 datasheet

8️⃣ Depends on required libraries