epd1in54b_V2.py 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. # *****************************************************************************
  2. # * | File : epd1in54b.py
  3. # * | Author : Waveshare team
  4. # * | Function : Electronic paper driver
  5. # * | Info :
  6. # *----------------
  7. # * | This version: V4.0
  8. # * | Date : 2019-06-20
  9. # # | Info : python demo
  10. # -----------------------------------------------------------------------------
  11. # Permission is hereby granted, free of charge, to any person obtaining a copy
  12. # of this software and associated documnetation files (the "Software"), to deal
  13. # in the Software without restriction, including without limitation the rights
  14. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  15. # copies of the Software, and to permit persons to whom the Software is
  16. # furished to do so, subject to the following conditions:
  17. #
  18. # The above copyright notice and this permission notice shall be included in
  19. # all copies or substantial portions of the Software.
  20. #
  21. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  24. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  26. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  27. # THE SOFTWARE.
  28. #
  29. import logging
  30. from . import epdconfig
  31. # Display resolution
  32. EPD_WIDTH = 200
  33. EPD_HEIGHT = 200
  34. logger = logging.getLogger(__name__)
  35. class EPD:
  36. def __init__(self):
  37. self.reset_pin = epdconfig.RST_PIN
  38. self.dc_pin = epdconfig.DC_PIN
  39. self.busy_pin = epdconfig.BUSY_PIN
  40. self.cs_pin = epdconfig.CS_PIN
  41. self.width = EPD_WIDTH
  42. self.height = EPD_HEIGHT
  43. # Hardware reset
  44. def reset(self):
  45. epdconfig.digital_write(self.reset_pin, 1)
  46. epdconfig.delay_ms(200)
  47. epdconfig.digital_write(self.reset_pin, 0) # module reset
  48. epdconfig.delay_ms(5)
  49. epdconfig.digital_write(self.reset_pin, 1)
  50. epdconfig.delay_ms(200)
  51. def send_command(self, command):
  52. epdconfig.digital_write(self.dc_pin, 0)
  53. epdconfig.digital_write(self.cs_pin, 0)
  54. epdconfig.spi_writebyte([command])
  55. epdconfig.digital_write(self.cs_pin, 1)
  56. def send_data(self, data):
  57. epdconfig.digital_write(self.dc_pin, 1)
  58. epdconfig.digital_write(self.cs_pin, 0)
  59. epdconfig.spi_writebyte([data])
  60. epdconfig.digital_write(self.cs_pin, 1)
  61. def ReadBusy(self):
  62. logger.debug("e-Paper busy")
  63. while(epdconfig.digital_read(self.busy_pin) == 1):
  64. epdconfig.delay_ms(100)
  65. logger.debug("e-Paper busy release")
  66. def init(self):
  67. if (epdconfig.module_init() != 0):
  68. return -1
  69. # EPD hardware init start
  70. self.reset()
  71. self.ReadBusy()
  72. self.send_command(0x12) #SWRESET
  73. self.ReadBusy()
  74. self.send_command(0x01) #Driver output control
  75. self.send_data(0xC7)
  76. self.send_data(0x00)
  77. self.send_data(0x01)
  78. self.send_command(0x11) #data entry mode
  79. self.send_data(0x01)
  80. self.send_command(0x44) #set Ram-X address start/end position
  81. self.send_data(0x00)
  82. self.send_data(0x18) #0x18-->(24+1)*8=200
  83. self.send_command(0x45) #set Ram-Y address start/end position
  84. self.send_data(0xC7) #0xC7-->(199+1)=200
  85. self.send_data(0x00)
  86. self.send_data(0x00)
  87. self.send_data(0x00)
  88. self.send_command(0x3C) #BorderWavefrom
  89. self.send_data(0x05)
  90. self.send_command(0x18) #Read built-in temperature sensor
  91. self.send_data(0x80)
  92. self.send_command(0x4E) # set RAM x address count to 0
  93. self.send_data(0x00)
  94. self.send_command(0x4F) # set RAM y address count to 0X199
  95. self.send_data(0xC7)
  96. self.send_data(0x00)
  97. self.ReadBusy()
  98. return 0
  99. def getbuffer(self, image):
  100. buf = [0xFF] * int(self.width * self.height / 8)
  101. # Set buffer to value of Python Imaging Library image.
  102. # Image must be in mode 1.
  103. image_monocolor = image.convert('1')
  104. imwidth, imheight = image_monocolor.size
  105. if imwidth != self.width or imheight != self.height:
  106. raise ValueError('Image must be same dimensions as display \
  107. ({0}x{1}).' .format(self.width, self.height))
  108. pixels = image_monocolor.load()
  109. for y in range(self.height):
  110. for x in range(self.width):
  111. # Set the bits for the column of pixels at the current position.
  112. if pixels[x, y] == 0:
  113. buf[int((x + y * self.width) / 8)] &= ~(0x80 >> (x % 8))
  114. return buf
  115. def display(self, blackimage, redimage):
  116. # send black data
  117. if (blackimage != None):
  118. self.send_command(0x24) # DATA_START_TRANSMISSION_1
  119. for i in range(0, int(self.width * self.height / 8)):
  120. self.send_data(blackimage[i])
  121. # send red data
  122. if (redimage != None):
  123. self.send_command(0x26) # DATA_START_TRANSMISSION_2
  124. for i in range(0, int(self.width * self.height / 8)):
  125. self.send_data(~redimage[i])
  126. self.send_command(0x22) # DISPLAY_REFRESH
  127. self.send_data(0xF7)
  128. self.send_command(0x20) # DISPLAY_REFRESH
  129. self.ReadBusy()
  130. def Clear(self):
  131. self.send_command(0x24) # DATA_START_TRANSMISSION_1
  132. for i in range(0, int(self.width * self.height / 8)):
  133. self.send_data(0xFF)
  134. self.send_command(0x26) # DATA_START_TRANSMISSION_2
  135. for i in range(0, int(self.width * self.height / 8)):
  136. self.send_data(0x00)
  137. self.send_command(0x22) # DISPLAY_REFRESH
  138. self.send_data(0xF7)
  139. self.send_command(0x20) # DISPLAY_REFRESH
  140. self.ReadBusy()
  141. def sleep(self):
  142. self.send_command(0x10) #enter deep sleep
  143. self.send_data(0x01)
  144. epdconfig.delay_ms(2000)
  145. epdconfig.module_exit()
  146. ### END OF FILE ###