epd7in5b_HD.py 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. # *****************************************************************************
  2. # * | File : epd7in5bc_HD.py
  3. # * | Author : Waveshare team
  4. # * | Function : Electronic paper driver
  5. # * | Info :
  6. # *----------------
  7. # * | This version: V1.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 = 880
  33. EPD_HEIGHT = 528
  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)
  48. epdconfig.delay_ms(4)
  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. busy = epdconfig.digital_read(self.busy_pin)
  64. while(busy == 1):
  65. busy = epdconfig.digital_read(self.busy_pin)
  66. epdconfig.delay_ms(200)
  67. def init(self):
  68. if (epdconfig.module_init() != 0):
  69. return -1
  70. self.reset()
  71. self.send_command(0x12); #SWRESET
  72. self.ReadBusy(); #waiting for the electronic paper IC to release the idle signal
  73. self.send_command(0x46); # Auto Write RAM
  74. self.send_data(0xF7);
  75. self.ReadBusy(); #waiting for the electronic paper IC to release the idle signal
  76. self.send_command(0x47); # Auto Write RAM
  77. self.send_data(0xF7);
  78. self.ReadBusy(); #waiting for the electronic paper IC to release the idle signal
  79. self.send_command(0x0C); # Soft start setting
  80. self.send_data(0xAE);
  81. self.send_data(0xC7);
  82. self.send_data(0xC3);
  83. self.send_data(0xC0);
  84. self.send_data(0x40);
  85. self.send_command(0x01); # Set MUX as 527
  86. self.send_data(0xAF);
  87. self.send_data(0x02);
  88. self.send_data(0x01);
  89. self.send_command(0x11); # Data entry mode
  90. self.send_data(0x01);
  91. self.send_command(0x44);
  92. self.send_data(0x00); # RAM x address start at 0
  93. self.send_data(0x00);
  94. self.send_data(0x6F); # RAM x address end at 36Fh -> 879
  95. self.send_data(0x03);
  96. self.send_command(0x45);
  97. self.send_data(0xAF); # RAM y address start at 20Fh;
  98. self.send_data(0x02);
  99. self.send_data(0x00); # RAM y address end at 00h;
  100. self.send_data(0x00);
  101. self.send_command(0x3C); # VBD
  102. self.send_data(0x01); # LUT1, for white
  103. self.send_command(0x18);
  104. self.send_data(0X80);
  105. self.send_command(0x22);
  106. self.send_data(0XB1); #Load Temperature and waveform setting.
  107. self.send_command(0x20);
  108. self.ReadBusy(); #waiting for the electronic paper IC to release the idle signal
  109. self.send_command(0x4E);
  110. self.send_data(0x00);
  111. self.send_data(0x00);
  112. self.send_command(0x4F);
  113. self.send_data(0xAF);
  114. self.send_data(0x02);
  115. return 0
  116. def getbuffer(self, image):
  117. # logger.debug("bufsiz = ",int(self.width/8) * self.height)
  118. buf = [0xFF] * (int(self.width/8) * self.height)
  119. image_monocolor = image.convert('1')
  120. imwidth, imheight = image_monocolor.size
  121. pixels = image_monocolor.load()
  122. logger.debug('imwidth = %d imheight = %d ',imwidth, imheight)
  123. if(imwidth == self.width and imheight == self.height):
  124. logger.debug("Horizontal")
  125. for y in range(imheight):
  126. for x in range(imwidth):
  127. # Set the bits for the column of pixels at the current position.
  128. if pixels[x, y] == 0:
  129. buf[int((x + y * self.width) / 8)] &= ~(0x80 >> (x % 8))
  130. elif(imwidth == self.height and imheight == self.width):
  131. logger.debug("Vertical")
  132. for y in range(imheight):
  133. for x in range(imwidth):
  134. newx = y
  135. newy = self.height - x - 1
  136. if pixels[x, y] == 0:
  137. buf[int((newx + newy*self.width) / 8)] &= ~(0x80 >> (y % 8))
  138. return buf
  139. def display(self, imageblack, imagered):
  140. self.send_command(0x4F);
  141. self.send_data(0xAf);
  142. self.send_command(0x24)
  143. for i in range(0, int(self.width * self.height / 8)):
  144. self.send_data(imageblack[i]);
  145. self.send_command(0x26)
  146. for i in range(0, int(self.width * self.height / 8)):
  147. self.send_data(~imagered[i]);
  148. self.send_command(0x22);
  149. self.send_data(0xC7); #Load LUT from MCU(0x32)
  150. self.send_command(0x20);
  151. epdconfig.delay_ms(200); #!!!The delay here is necessary, 200uS at least!!!
  152. self.ReadBusy();
  153. def Clear(self):
  154. self.send_command(0x4F);
  155. self.send_data(0xAf);
  156. self.send_command(0x24)
  157. for i in range(0, int(self.width * self.height / 8)):
  158. self.send_data(0xff);
  159. self.send_command(0x26)
  160. for i in range(0, int(self.width * self.height / 8)):
  161. self.send_data(0x00);
  162. self.send_command(0x22);
  163. self.send_data(0xC7); #Load LUT from MCU(0x32)
  164. self.send_command(0x20);
  165. epdconfig.delay_ms(200); #!!!The delay here is necessary, 200uS at least!!!
  166. self.ReadBusy();
  167. def sleep(self):
  168. self.send_command(0x10); #deep sleep
  169. self.send_data(0x01);
  170. epdconfig.delay_ms(2000)
  171. epdconfig.module_exit()
  172. ### END OF FILE ###