remove unused 'color' arg from clear method

This commit is contained in:
txoof 2021-05-08 19:41:18 +02:00
commit 0bec0f9114

View file

@ -501,7 +501,7 @@ class EPD:
self.ReadBusy()
# pass
def Clear(self, color):
def Clear(self):
self.send_command(0x10)
for i in range(0, int(self.width * self.height / 8)):
self.send_data(0xFF)