G6EJD / ESP32-e-Paper-Weather-Display

An ESP32 and 2.9", 4.2" or 7.5" ePaper Display reads Weather Underground data via their API and then displays the weather
Other
946 stars 206 forks source link

Inkplate 6 / 10 #160

Closed mattncsu closed 2 years ago

mattncsu commented 2 years ago

Hello,

Is it possible to adapt your weather display code to run on the Inkplate 6 or 10? The Inkplate also uses Adafruit GFX to draw the buffer. I'll start trying to figure it out but I'm not sure how it would be to replace GxEPD2 with the Inkplate library.

G6EJD commented 2 years ago

Just add:

include "Inkplate.h" //Include Inkplate library to the sketch

Inkplate display(INKPLATE_1BIT); // Create object on Inkplate library and set library to work in monochorme mode remove gxepd2 references and adapt for ug8lib, should be just a few lines that change.