epd2in7b.py 9.1 KB

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