Hello,
this is my first post in this forum. I have read through the guidelines and hope that I have described my problem in a way that you can help me.
I am running my Waveshares EPD (1.02 inch, GDEW0102T4) with an Attiny3216. With the GxEPD2 library and the Arduino IDE this is possible without any problems. Many thanks to Marc Zingg for the enormous help.
Since I run my system with a coin cell I am interested in the required currents.
In fullrefresh my 1.02 inch EPD needs about 5-7 mA with a supply voltage of 3.3V.
Afterwards it is switched off with the method powerOff(); by default. Nevertheless the display needs a current of about 3mA in this following "power off -phase". Of this, 2.5mA runs permanently through the RST connector.
With the original Waveshares code the display needs only 20µA in sleep mode. Here, in the EPD_Sleep(void) method, the RST pin is set to LOW.
Waveshares Code
void EPD_Sleep(void)
{
EPD_SendCommand(0X02); //power off
EPD_WaitUntilIdle();
EPD_SendCommand(0X07); //deep sleep
EPD_SendData(0xA5);
DEV_Digital_Write(EPD_RST_PIN, 0); // Module reset => RST LOW
}
I can also set the RST to LOW after refresh in the Arduino Sketch but this results in a reset of the UC8175 as in the original Waveshares code. The current consumption in this case is about 100µA.
I used the default GxEPD2_Example sketch and adjusted it to my EPD. Also I use the recommended wiring of my EPD with the AVR microcontroller.
I would appreciate any advices on how I could use less power in power off mode.
Many greetings
Josh