I am trying to get an adafruit monochrome eink featherwing PRODUCT ID: 4195 to work on a particle io xenon. I am getting garbage on the display.
code is from example epd library example
featherwingtest.ino
don’t get anything to happen without
comenting out
Adafruit_IL0373 epd(212, 104 ,EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY);
and using
Adafruit_SSD1675 epd(250, 122, EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY)
I have verified that the display is working with an adafruit feather m4. The adafruit featherwing test runs.
If I unplug the adafruit m4 and plug in the xenon the display does change, but it is garbage. Nothing even resembling what it should be.
I comented out most of the code in the Particle featherwingtest.ino so the example code only does
epd.clearBuffer();
epd.display();
delay(REDRAW_DELAY_SEC*1000);
this does not even change the eink display.
Any help would be appreciated.