You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having trouble getting this panel to work with the esp32s3 and the RGB bus. The backlight comes on, but nothing is drawn to screen. I've verified that the display.init() returns true of my custom LGFX_Device, and when i call the draw functions there aren't any crashes - but nothing is displayed on the screen. I'm hoping that someone can spot something that I've missed.
The text was updated successfully, but these errors were encountered:
briandilley
changed the title
Having trouble getting an ESP32S to work with an RGB Bus and Panel (EK9713, ER-TFT065-1)
Having trouble getting an ESP32S3 to work with an RGB Bus and Panel (EK9713, ER-TFT065-1)
Dec 8, 2023
This particular LCD driver chip supports both DE and SYNC modes. Does the esp32-s3, and LGFX library, also support both modes?
It looks like the LGFX has configuration options for both DE and SYNC pins, but it's not clear which mode of operation the library is actually using.
Once the hardware configuration is set up, Is there a way to specifically set the mode to either DE mode or SYNC mode in the library to match the hardware?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Environment ( 実行環境 )
Problem Description ( 問題の内容 )
I'm having trouble getting this panel to work with the esp32s3 and the RGB bus. The backlight comes on, but nothing is drawn to screen. I've verified that the
display.init()
returns true of my custom LGFX_Device, and when i call the draw functions there aren't any crashes - but nothing is displayed on the screen. I'm hoping that someone can spot something that I've missed.Here's a link to the panel driver IC data sheet
Here's a link to the display data sheet
Here are the build flags in use (it's a custom board using an esp32s), if you need any other build settings i'm happy to oblige.
Here's the custom
LGFX_Device
implementation that I've made (C121 is the internal name of the board):And here is how it's used:
The text was updated successfully, but these errors were encountered: