epd7in5b_V2.py 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. # *****************************************************************************
  2. # * | File : epd7in5b_V2.py
  3. # * | Author : Waveshare team
  4. # * | Function : Electronic paper driver
  5. # * | Info :
  6. # *----------------
  7. # * | This version: V4.1
  8. # * | Date : 2020-11-30
  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 = 800
  33. EPD_HEIGHT = 480
  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. # Hardware reset
  43. def reset(self):
  44. epdconfig.digital_write(self.reset_pin, 1)
  45. epdconfig.delay_ms(200)
  46. epdconfig.digital_write(self.reset_pin, 0)
  47. epdconfig.delay_ms(4)
  48. epdconfig.digital_write(self.reset_pin, 1)
  49. epdconfig.delay_ms(200)
  50. def send_command(self, command):
  51. epdconfig.digital_write(self.dc_pin, 0)
  52. epdconfig.digital_write(self.cs_pin, 0)
  53. epdconfig.spi_writebyte([command])
  54. epdconfig.digital_write(self.cs_pin, 1)
  55. def send_data(self, data):
  56. epdconfig.digital_write(self.dc_pin, 1)
  57. epdconfig.digital_write(self.cs_pin, 0)
  58. epdconfig.spi_writebyte([data])
  59. epdconfig.digital_write(self.cs_pin, 1)
  60. def ReadBusy(self):
  61. logging.debug("e-Paper busy")
  62. self.send_command(0x71)
  63. busy = epdconfig.digital_read(self.busy_pin)
  64. while(busy == 0):
  65. self.send_command(0x71)
  66. busy = epdconfig.digital_read(self.busy_pin)
  67. epdconfig.delay_ms(200)
  68. logging.debug("e-Paper busy release")
  69. def init(self):
  70. if (epdconfig.module_init() != 0):
  71. return -1
  72. self.reset()
  73. # self.send_command(0x06) # btst
  74. # self.send_data(0x17)
  75. # self.send_data(0x17)
  76. # self.send_data(0x38) # If an exception is displayed, try using 0x38
  77. # self.send_data(0x17)
  78. self.send_command(0x01); #POWER SETTING
  79. self.send_data(0x07);
  80. self.send_data(0x07); #VGH=20V,VGL=-20V
  81. self.send_data(0x3f); #VDH=15V
  82. self.send_data(0x3f); #VDL=-15V
  83. self.send_command(0x04); #POWER ON
  84. epdconfig.delay_ms(100);
  85. self.ReadBusy();
  86. self.send_command(0X00); #PANNEL SETTING
  87. self.send_data(0x0F); #KW-3f KWR-2F BWROTP 0f BWOTP 1f
  88. self.send_command(0x61); #tres
  89. self.send_data(0x03); #source 800
  90. self.send_data(0x20);
  91. self.send_data(0x01); #gate 480
  92. self.send_data(0xE0);
  93. self.send_command(0X15);
  94. self.send_data(0x00);
  95. self.send_command(0X50); #VCOM AND DATA INTERVAL SETTING
  96. self.send_data(0x11);
  97. self.send_data(0x07);
  98. self.send_command(0X60); #TCON SETTING
  99. self.send_data(0x22);
  100. self.send_command(0x65);
  101. self.send_data(0x00);
  102. self.send_data(0x00);
  103. self.send_data(0x00);
  104. self.send_data(0x00);
  105. return 0
  106. def getbuffer(self, image):
  107. # logging.debug("bufsiz = ",int(self.width/8) * self.height)
  108. buf = [0xFF] * (int(self.width/8) * self.height)
  109. image_monocolor = image.convert('1')
  110. imwidth, imheight = image_monocolor.size
  111. pixels = image_monocolor.load()
  112. logging.debug('imwidth = %d imheight = %d ',imwidth, imheight)
  113. if(imwidth == self.width and imheight == self.height):
  114. logging.debug("Horizontal")
  115. for y in range(imheight):
  116. for x in range(imwidth):
  117. # Set the bits for the column of pixels at the current position.
  118. if pixels[x, y] == 0:
  119. buf[int((x + y * self.width) / 8)] &= ~(0x80 >> (x % 8))
  120. elif(imwidth == self.height and imheight == self.width):
  121. logging.debug("Vertical")
  122. for y in range(imheight):
  123. for x in range(imwidth):
  124. newx = y
  125. newy = self.height - x - 1
  126. if pixels[x, y] == 0:
  127. buf[int((newx + newy*self.width) / 8)] &= ~(0x80 >> (y % 8))
  128. return buf
  129. def display(self, imageblack, imagered):
  130. self.send_command(0x10)
  131. for i in range(0, int(self.width * self.height / 8)):
  132. self.send_data(imageblack[i]);
  133. self.send_command(0x13)
  134. for i in range(0, int(self.width * self.height / 8)):
  135. self.send_data(~imagered[i]);
  136. self.send_command(0x12)
  137. epdconfig.delay_ms(100)
  138. self.ReadBusy()
  139. def Clear(self):
  140. self.send_command(0x10)
  141. for i in range(0, int(self.width * self.height / 8)):
  142. self.send_data(0xff)
  143. self.send_command(0x13)
  144. for i in range(0, int(self.width * self.height / 8)):
  145. self.send_data(0x00)
  146. self.send_command(0x12)
  147. epdconfig.delay_ms(100)
  148. self.ReadBusy()
  149. def sleep(self):
  150. self.send_command(0x02) # POWER_OFF
  151. self.ReadBusy()
  152. self.send_command(0x07) # DEEP_SLEEP
  153. self.send_data(0XA5)
  154. epdconfig.delay_ms(2000)
  155. epdconfig.module_exit()
  156. ### END OF FILE ###