Closed cryptax closed 5 years ago
Can you epd.init() after your sleep ? I don't use python for my code, but in C I do EPD_Sleep() and then before I want to update the display I do an EPD_Init() again. The time between my EPD_Sleep() and EPD_Init() is about 10 minutes for me.
Yes, epd.init()
works.
It's just that I would have expected a lighter wake up. Okay, so let's do init.
The epd2in7b library does not provide any function to wake up from
sleep()
. Once it is called,reset()
for instance does not wake up the screen. Please assist to wake up the screen. Should we send the commandPOWER_ON
? and something else?For example, see the program below. We can display text as much as we want until
epd.sleep()
. Once sleep is called, the program hangs during display of text number 3.