-
-
Notifications
You must be signed in to change notification settings - Fork 226
Description
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).