This commit is contained in:
2024-01-19 22:33:44 +01:00
parent 2b77fd723c
commit 72fcc76327
3 changed files with 100 additions and 78 deletions
+20
View File
@@ -0,0 +1,20 @@
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