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
This is the device page on the waveshare wiki -> https://www.waveshare.com/wiki/ESP32-S3-LCD-1.85
This device declaration should work on both the touch and non-touch version of the device, but I personally only used the non-tocuh version.
I also got the gif example to work with an SD Card, but only with the driver files provided on the wiki(and some minor edits to the example code).
This discussion was converted from issue #681 on June 15, 2025 12:09.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I got Waveshares 1.85 round lcd display working with this library and wanted to share the config for the wiki.
This is the device declaration:
#include <Arduino_GFX_Library.h>
#define GFX_BL 5
Arduino_DataBus *bus = new Arduino_ESP32QSPI(21 /* cs */, 40 /* sck */, 46 /* d0 */, 45 /* d1 */, 42 /* d2 */, 41 /* d3 */, false);
Arduino_GFX *gfx = new Arduino_ST77916(bus /*bus*/, -1 /*rst*/, 0 /*rotation*/, true /*ips*/, 360 /*width*/, 360 /*height*/);
This is the device page on the waveshare wiki -> https://www.waveshare.com/wiki/ESP32-S3-LCD-1.85
This device declaration should work on both the touch and non-touch version of the device, but I personally only used the non-tocuh version.
I also got the gif example to work with an SD Card, but only with the driver files provided on the wiki(and some minor edits to the example code).
Beta Was this translation helpful? Give feedback.
All reactions