epd2in7b.py 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. # *****************************************************************************
  2. # * | File : epd2in7b.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 = 176
  33. EPD_HEIGHT = 264
  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. lut_vcom_dc = [
  44. 0x00, 0x00,
  45. 0x00, 0x1A, 0x1A, 0x00, 0x00, 0x01,
  46. 0x00, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  47. 0x00, 0x0E, 0x01, 0x0E, 0x01, 0x10,
  48. 0x00, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  49. 0x00, 0x04, 0x10, 0x00, 0x00, 0x05,
  50. 0x00, 0x03, 0x0E, 0x00, 0x00, 0x0A,
  51. 0x00, 0x23, 0x00, 0x00, 0x00, 0x01
  52. ]
  53. lut_ww = [
  54. 0x90, 0x1A, 0x1A, 0x00, 0x00, 0x01,
  55. 0x40, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  56. 0x84, 0x0E, 0x01, 0x0E, 0x01, 0x10,
  57. 0x80, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  58. 0x00, 0x04, 0x10, 0x00, 0x00, 0x05,
  59. 0x00, 0x03, 0x0E, 0x00, 0x00, 0x0A,
  60. 0x00, 0x23, 0x00, 0x00, 0x00, 0x01
  61. ]
  62. # R22H r
  63. lut_bw = [
  64. 0xA0, 0x1A, 0x1A, 0x00, 0x00, 0x01,
  65. 0x00, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  66. 0x84, 0x0E, 0x01, 0x0E, 0x01, 0x10,
  67. 0x90, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  68. 0xB0, 0x04, 0x10, 0x00, 0x00, 0x05,
  69. 0xB0, 0x03, 0x0E, 0x00, 0x00, 0x0A,
  70. 0xC0, 0x23, 0x00, 0x00, 0x00, 0x01
  71. ]
  72. # R23H w
  73. lut_bb = [
  74. 0x90, 0x1A, 0x1A, 0x00, 0x00, 0x01,
  75. 0x40, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  76. 0x84, 0x0E, 0x01, 0x0E, 0x01, 0x10,
  77. 0x80, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  78. 0x00, 0x04, 0x10, 0x00, 0x00, 0x05,
  79. 0x00, 0x03, 0x0E, 0x00, 0x00, 0x0A,
  80. 0x00, 0x23, 0x00, 0x00, 0x00, 0x01
  81. ]
  82. # R24H b
  83. lut_wb = [
  84. 0x90, 0x1A, 0x1A, 0x00, 0x00, 0x01,
  85. 0x20, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  86. 0x84, 0x0E, 0x01, 0x0E, 0x01, 0x10,
  87. 0x10, 0x0A, 0x0A, 0x00, 0x00, 0x08,
  88. 0x00, 0x04, 0x10, 0x00, 0x00, 0x05,
  89. 0x00, 0x03, 0x0E, 0x00, 0x00, 0x0A,
  90. 0x00, 0x23, 0x00, 0x00, 0x00, 0x01
  91. ]
  92. # Hardware reset
  93. def reset(self):
  94. epdconfig.digital_write(self.reset_pin, 1)
  95. epdconfig.delay_ms(200)
  96. epdconfig.digital_write(self.reset_pin, 0)
  97. epdconfig.delay_ms(2)
  98. epdconfig.digital_write(self.reset_pin, 1)
  99. epdconfig.delay_ms(200)
  100. def send_command(self, command):
  101. epdconfig.digital_write(self.dc_pin, 0)
  102. epdconfig.digital_write(self.cs_pin, 0)
  103. epdconfig.spi_writebyte([command])
  104. epdconfig.digital_write(self.cs_pin, 1)
  105. def send_data(self, data):
  106. epdconfig.digital_write(self.dc_pin, 1)
  107. epdconfig.digital_write(self.cs_pin, 0)
  108. epdconfig.spi_writebyte([data])
  109. epdconfig.digital_write(self.cs_pin, 1)
  110. def ReadBusy(self):
  111. logger.debug("e-Paper busy")
  112. while(epdconfig.digital_read(self.busy_pin) == 0): # 0: idle, 1: busy
  113. epdconfig.delay_ms(100)
  114. logger.debug("e-Paper busy release")
  115. def set_lut(self):
  116. self.send_command(0x20) # vcom
  117. for count in range(0, 44):
  118. self.send_data(self.lut_vcom_dc[count])
  119. self.send_command(0x21) # ww --
  120. for count in range(0, 42):
  121. self.send_data(self.lut_ww[count])
  122. self.send_command(0x22) # bw r
  123. for count in range(0, 42):
  124. self.send_data(self.lut_bw[count])
  125. self.send_command(0x23) # wb w
  126. for count in range(0, 42):
  127. self.send_data(self.lut_bb[count])
  128. self.send_command(0x24) # bb b
  129. for count in range(0, 42):
  130. self.send_data(self.lut_wb[count])
  131. def init(self):
  132. if (epdconfig.module_init() != 0):
  133. return -1
  134. self.reset()
  135. self.send_command(0x04) # POWER_ON
  136. self.ReadBusy()
  137. self.send_command(0x00) # PANEL_SETTING
  138. self.send_data(0xaf) #KW-BF KWR-AF BWROTP 0f
  139. self.send_command(0x30) # PLL_CONTROL
  140. self.send_data(0x3a) #3A 100HZ 29 150Hz 39 200HZ 31 171HZ
  141. self.send_command(0x01) # POWER_SETTING
  142. self.send_data(0x03) # VDS_EN, VDG_EN
  143. self.send_data(0x00) # VCOM_HV, VGHL_LV[1], VGHL_LV[0]
  144. self.send_data(0x2b) # VDH
  145. self.send_data(0x2b) # VDL
  146. self.send_data(0x09) # VDHR
  147. self.send_command(0x06) # BOOSTER_SOFT_START
  148. self.send_data(0x07)
  149. self.send_data(0x07)
  150. self.send_data(0x17)
  151. # Power optimization
  152. self.send_command(0xF8)
  153. self.send_data(0x60)
  154. self.send_data(0xA5)
  155. # Power optimization
  156. self.send_command(0xF8)
  157. self.send_data(0x89)
  158. self.send_data(0xA5)
  159. # Power optimization
  160. self.send_command(0xF8)
  161. self.send_data(0x90)
  162. self.send_data(0x00)
  163. # Power optimization
  164. self.send_command(0xF8)
  165. self.send_data(0x93)
  166. self.send_data(0x2A)
  167. # Power optimization
  168. self.send_command(0xF8)
  169. self.send_data(0x73)
  170. self.send_data(0x41)
  171. self.send_command(0x82) # VCM_DC_SETTING_REGISTER
  172. self.send_data(0x12)
  173. self.send_command(0x50) # VCOM_AND_DATA_INTERVAL_SETTING
  174. self.send_data(0x87) # define by OTP
  175. self.set_lut()
  176. self.send_command(0x16) # PARTIAL_DISPLAY_REFRESH
  177. self.send_data(0x00)
  178. return 0
  179. def getbuffer(self, image):
  180. # logger.debug("bufsiz = ",int(self.width/8) * self.height)
  181. buf = [0xFF] * (int(self.width/8) * self.height)
  182. image_monocolor = image.convert('1')
  183. imwidth, imheight = image_monocolor.size
  184. pixels = image_monocolor.load()
  185. # logger.debug("imwidth = %d, imheight = %d",imwidth,imheight)
  186. if(imwidth == self.width and imheight == self.height):
  187. logger.debug("Vertical")
  188. for y in range(imheight):
  189. for x in range(imwidth):
  190. # Set the bits for the column of pixels at the current position.
  191. if pixels[x, y] == 0:
  192. buf[int((x + y * self.width) / 8)] &= ~(0x80 >> (x % 8))
  193. elif(imwidth == self.height and imheight == self.width):
  194. logger.debug("Horizontal")
  195. for y in range(imheight):
  196. for x in range(imwidth):
  197. newx = y
  198. newy = self.height - x - 1
  199. if pixels[x, y] == 0:
  200. buf[int((newx + newy*self.width) / 8)] &= ~(0x80 >> (y % 8))
  201. return buf
  202. def display(self, imageblack, imagered):
  203. self.send_command(0x10)
  204. for i in range(0, int(self.width * self.height / 8)):
  205. self.send_data(~imageblack[i])
  206. self.send_command(0x11)
  207. self.send_command(0x13)
  208. for i in range(0, int(self.width * self.height / 8)):
  209. self.send_data(~imagered[i])
  210. self.send_command(0x11)
  211. self.send_command(0x12)
  212. self.ReadBusy()
  213. def Clear(self, color=0x00):
  214. self.send_command(0x10)
  215. for i in range(0, int(self.width * self.height / 8)):
  216. self.send_data(color)
  217. self.send_command(0x11)
  218. self.send_command(0x13)
  219. for i in range(0, int(self.width * self.height / 8)):
  220. self.send_data(color)
  221. self.send_command(0x11)
  222. self.send_command(0x12)
  223. self.ReadBusy()
  224. def sleep(self):
  225. self.send_command(0X50)
  226. self.send_data(0xf7)
  227. self.send_command(0X02)
  228. self.send_command(0X07)
  229. self.send_data(0xA5)
  230. epdconfig.delay_ms(2000)
  231. epdconfig.module_exit()
  232. ### END OF FILE ###