I have a little ESP32-circuit, that updates an eink display (Waveshare with integrated controllerboard), once and a while.
Code: Select all
display.init();
display.setTextColor(GxEPD_BLACK);
display.setRotation(0);
//display.setFullWindow();
display.firstPage();
do
{
// Set the individual pixels to a color (7 in total)
}
} while (display.nextPage());
// Now we put the ESP into hibernation mode
It works as intended, but the thing is that the circuit is battery-operated and since the 7-color display can take quite some time to update, my question is:
Is it possible to send image data to the eink display and then put the ESP into hibernation mode while the display finishes updating?