I've been trying to get anything to display, but nothing is working, no error's just nothing appears on the display. I've tried several of the display driver classes, no luck.
Okay, I spent some time with this, maybe not the exact same display, but!..
I can report that the settings (commented in/out lines in the driver code) are absolutely critical, you have to nail the correct display model correctly, or no results...
You have to do more than "try a few". You have to find out, the right one because there are too many to try.
V4: resolution of 250 × 122, V4 version hardware structure and interface compatible with V3 version, using V4 program. If you are buying for the first time and have a V4 label on the back of the screen, just use the V4 program.
// select the display class (only one), matching the kind of display panel
#define GxEPD2_DISPLAY_CLASS GxEPD2_BW
//#define GxEPD2_DISPLAY_CLASS GxEPD2_3C
//#define GxEPD2_DISPLAY_CLASS GxEPD2_4C
//#define GxEPD2_DISPLAY_CLASS GxEPD2_7C
And make sure your wiring corresponds to the constructor parameters for your board.
If you still have a problem with your display, then report the inking you see on the flexible connector of the screen panel. And report all selections you made.
Hi aarg
Thank you for responding. I ran some code on the board and it gave me this back ...
22:56:28.570 -> MOSI: 23
22:56:28.570 -> MISO: 19
22:56:28.570 -> SCK: 18
22:56:28.570 -> SS: 5
This is what I used for the connections and this line of code under the "ESP32" section in GxEPD2_display_selection_new_style.h ...
GxEPD2_DISPLAY_CLASS<GxEPD2_DRIVER_CLASS, MAX_HEIGHT(GxEPD2_DRIVER_CLASS)> display(GxEPD2_DRIVER_CLASS(/*CS=5*/ 5, /*DC=*/ 17, /*RST=*/ 16, /*BUSY=*/ 4)); // my suggested wiring and proto board
I basically tried the two 104x212 displays under the section 3-color e-papers.
Hi ZinggIM
Thank you for the suggestions. I actually have the 2.13 3 color 104x212 display HAT. The examples from Waveshare seem to be only for the Arduino UNO. But I'll give them a go and I'm still seeing nothing.
I thank you both so very much for all your help, it is working great with my Arduino UNO, I gave up on the ESP32-WROOM-32D, tried a lot of combinations, got nothing
I'm happy and looking forward to learning e-Paper displays.