Merge pull request #256 from loiccoyle/master

remove unused linewidth code
This commit is contained in:
Wilson 2022-09-21 10:17:24 +08:00 committed by GitHub
commit 04115ac1a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 15 deletions

View File

@ -309,11 +309,6 @@ class EPD:
image : Image data
'''
def displayPartial(self, image):
if self.width%8 == 0:
linewidth = int(self.width/8)
else:
linewidth = int(self.width/8) + 1
epdconfig.digital_write(self.reset_pin, 0)
epdconfig.delay_ms(1)
epdconfig.digital_write(self.reset_pin, 1)
@ -355,11 +350,6 @@ class EPD:
image : Image data
'''
def displayPartBaseImage(self, image):
if self.width%8 == 0:
linewidth = int(self.width/8)
else:
linewidth = int(self.width/8) + 1
self.send_command(0x24)
self.send_data2(image)

View File

@ -163,11 +163,6 @@ class EPD:
# display image
def display(self, imageblack, imagered):
if self.width%8 == 0:
linewidth = int(self.width/8)
else:
linewidth = int(self.width/8) + 1
self.send_command(0x24)
self.send_data2(imageblack)