Consolidate repeated functions
This commit is contained in:
parent
e51fcad444
commit
c586f8d0f7
38 changed files with 2001 additions and 2881 deletions
|
|
@ -36,35 +36,10 @@ EPD_HEIGHT = 200
|
|||
|
||||
class EPD:
|
||||
def __init__(self):
|
||||
self.reset_pin = epdconfig.RST_PIN
|
||||
self.dc_pin = epdconfig.DC_PIN
|
||||
self.busy_pin = epdconfig.BUSY_PIN
|
||||
self.cs_pin = epdconfig.CS_PIN
|
||||
self.width = EPD_WIDTH
|
||||
self.height = EPD_HEIGHT
|
||||
|
||||
|
||||
# Hardware reset
|
||||
def reset(self):
|
||||
epdconfig.digital_write(self.reset_pin, 1)
|
||||
epdconfig.delay_ms(200)
|
||||
epdconfig.digital_write(self.reset_pin, 0) # module reset
|
||||
epdconfig.delay_ms(5)
|
||||
epdconfig.digital_write(self.reset_pin, 1)
|
||||
epdconfig.delay_ms(200)
|
||||
|
||||
def send_command(self, command):
|
||||
epdconfig.digital_write(self.dc_pin, 0)
|
||||
epdconfig.digital_write(self.cs_pin, 0)
|
||||
epdconfig.spi_writebyte([command])
|
||||
epdconfig.digital_write(self.cs_pin, 1)
|
||||
|
||||
def send_data(self, data):
|
||||
epdconfig.digital_write(self.dc_pin, 1)
|
||||
epdconfig.digital_write(self.cs_pin, 0)
|
||||
epdconfig.spi_writebyte([data])
|
||||
epdconfig.digital_write(self.cs_pin, 1)
|
||||
|
||||
self.height = EPD_HEIGHT
|
||||
|
||||
def ReadBusy(self):
|
||||
logging.debug("e-Paper busy")
|
||||
while(epdconfig.digital_read(self.busy_pin) == 1):
|
||||
|
|
@ -75,41 +50,41 @@ class EPD:
|
|||
if (epdconfig.module_init() != 0):
|
||||
return -1
|
||||
# EPD hardware init start
|
||||
self.reset()
|
||||
epdconfig.reset(200, 5, 200)
|
||||
|
||||
self.ReadBusy()
|
||||
self.send_command(0x12) #SWRESET
|
||||
epdconfig.send_command(0x12) #SWRESET
|
||||
self.ReadBusy()
|
||||
|
||||
self.send_command(0x01) #Driver output control
|
||||
self.send_data(0xC7)
|
||||
self.send_data(0x00)
|
||||
self.send_data(0x01)
|
||||
epdconfig.send_command(0x01) #Driver output control
|
||||
epdconfig.send_data(0xC7)
|
||||
epdconfig.send_data(0x00)
|
||||
epdconfig.send_data(0x01)
|
||||
|
||||
self.send_command(0x11) #data entry mode
|
||||
self.send_data(0x01)
|
||||
epdconfig.send_command(0x11) #data entry mode
|
||||
epdconfig.send_data(0x01)
|
||||
|
||||
self.send_command(0x44) #set Ram-X address start/end position
|
||||
self.send_data(0x00)
|
||||
self.send_data(0x18) #0x18-->(24+1)*8=200
|
||||
epdconfig.send_command(0x44) #set Ram-X address start/end position
|
||||
epdconfig.send_data(0x00)
|
||||
epdconfig.send_data(0x18) #0x18-->(24+1)*8=200
|
||||
|
||||
self.send_command(0x45) #set Ram-Y address start/end position
|
||||
self.send_data(0xC7) #0xC7-->(199+1)=200
|
||||
self.send_data(0x00)
|
||||
self.send_data(0x00)
|
||||
self.send_data(0x00)
|
||||
epdconfig.send_command(0x45) #set Ram-Y address start/end position
|
||||
epdconfig.send_data(0xC7) #0xC7-->(199+1)=200
|
||||
epdconfig.send_data(0x00)
|
||||
epdconfig.send_data(0x00)
|
||||
epdconfig.send_data(0x00)
|
||||
|
||||
self.send_command(0x3C) #BorderWavefrom
|
||||
self.send_data(0x05)
|
||||
epdconfig.send_command(0x3C) #BorderWavefrom
|
||||
epdconfig.send_data(0x05)
|
||||
|
||||
self.send_command(0x18) #Read built-in temperature sensor
|
||||
self.send_data(0x80)
|
||||
epdconfig.send_command(0x18) #Read built-in temperature sensor
|
||||
epdconfig.send_data(0x80)
|
||||
|
||||
self.send_command(0x4E) # set RAM x address count to 0
|
||||
self.send_data(0x00)
|
||||
self.send_command(0x4F) # set RAM y address count to 0X199
|
||||
self.send_data(0xC7)
|
||||
self.send_data(0x00)
|
||||
epdconfig.send_command(0x4E) # set RAM x address count to 0
|
||||
epdconfig.send_data(0x00)
|
||||
epdconfig.send_command(0x4F) # set RAM y address count to 0X199
|
||||
epdconfig.send_data(0xC7)
|
||||
epdconfig.send_data(0x00)
|
||||
self.ReadBusy()
|
||||
return 0
|
||||
|
||||
|
|
@ -134,39 +109,39 @@ class EPD:
|
|||
def display(self, blackimage, redimage):
|
||||
# send black data
|
||||
if (blackimage != None):
|
||||
self.send_command(0x24) # DATA_START_TRANSMISSION_1
|
||||
epdconfig.send_command(0x24) # DATA_START_TRANSMISSION_1
|
||||
for i in range(0, int(self.width * self.height / 8)):
|
||||
self.send_data(blackimage[i])
|
||||
epdconfig.send_data(blackimage[i])
|
||||
|
||||
# send red data
|
||||
if (redimage != None):
|
||||
self.send_command(0x26) # DATA_START_TRANSMISSION_2
|
||||
epdconfig.send_command(0x26) # DATA_START_TRANSMISSION_2
|
||||
for i in range(0, int(self.width * self.height / 8)):
|
||||
self.send_data(~redimage[i])
|
||||
epdconfig.send_data(~redimage[i])
|
||||
|
||||
self.send_command(0x22) # DISPLAY_REFRESH
|
||||
self.send_data(0xF7)
|
||||
self.send_command(0x20) # DISPLAY_REFRESH
|
||||
epdconfig.send_command(0x22) # DISPLAY_REFRESH
|
||||
epdconfig.send_data(0xF7)
|
||||
epdconfig.send_command(0x20) # DISPLAY_REFRESH
|
||||
self.ReadBusy()
|
||||
|
||||
def Clear(self):
|
||||
self.send_command(0x24) # DATA_START_TRANSMISSION_1
|
||||
epdconfig.send_command(0x24) # DATA_START_TRANSMISSION_1
|
||||
for i in range(0, int(self.width * self.height / 8)):
|
||||
self.send_data(0xFF)
|
||||
epdconfig.send_data(0xFF)
|
||||
|
||||
self.send_command(0x26) # DATA_START_TRANSMISSION_2
|
||||
epdconfig.send_command(0x26) # DATA_START_TRANSMISSION_2
|
||||
for i in range(0, int(self.width * self.height / 8)):
|
||||
self.send_data(0x00)
|
||||
epdconfig.send_data(0x00)
|
||||
|
||||
self.send_command(0x22) # DISPLAY_REFRESH
|
||||
self.send_data(0xF7)
|
||||
self.send_command(0x20) # DISPLAY_REFRESH
|
||||
epdconfig.send_command(0x22) # DISPLAY_REFRESH
|
||||
epdconfig.send_data(0xF7)
|
||||
epdconfig.send_command(0x20) # DISPLAY_REFRESH
|
||||
self.ReadBusy()
|
||||
|
||||
|
||||
def sleep(self):
|
||||
self.send_command(0x10) #enter deep sleep
|
||||
self.send_data(0x01)
|
||||
epdconfig.send_command(0x10) #enter deep sleep
|
||||
epdconfig.send_data(0x01)
|
||||
|
||||
epdconfig.delay_ms(2000)
|
||||
epdconfig.module_exit()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue