The driver just writes images to files. This makes it possible to test without an e-ink display.
18 lines
312 B
Python
18 lines
312 B
Python
# Display resolution
|
|
EPD_WIDTH = 800
|
|
EPD_HEIGHT = 480
|
|
|
|
class EPD:
|
|
def init(self):
|
|
pass
|
|
|
|
def display(self, image):
|
|
image.save('display_image.png')
|
|
|
|
def getbuffer(self, image):
|
|
image.save('getbuffer_image.png')
|
|
return image
|
|
|
|
def sleep(self):
|
|
pass
|