1
0

adds eink script

This commit is contained in:
2024-12-05 22:29:45 +01:00
parent ec6615a007
commit 46bfbd5a94
8 changed files with 611 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
from PIL import ImageShow
class EPDummy:
def __init__(self):
self.width = 122
self.height = 250
FULL_UPDATE = 0
PART_UPDATE = 1
def display(self, image):
ImageShow.show(image)
def displayPartial(self, image):
ImageShow.show(image)
def displayPartBaseImage(self, image):
ImageShow.show(image)
def init(self, a):
pass
def Clear(self, a):
pass
def getbuffer(self, image):
return image
def exit(self):
pass