| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 | #!/usr/bin/python# -*- coding:utf-8 -*-# *****************************************************************************# * | File        :	  epd4in01f.py# * | Author      :   Waveshare team# * | Function    :   Electronic paper driver# * | Info        :# *----------------# * | This version:   V1.0# * | Date        :   2020-11-06# # | Info        :   python demo# -----------------------------------------------------------------------------# Permission is hereby granted, free of charge, to any person obtaining a copy# of this software and associated documnetation files (the "Software"), to deal# in the Software without restriction, including without limitation the rights# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell# copies of the Software, and to permit persons to  whom the Software is# furished to do so, subject to the following conditions:## The above copyright notice and this permission notice shall be included in# all copies or substantial portions of the Software.## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,# FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER# LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN# THE SOFTWARE.#import loggingfrom . import epdconfig# Display resolutionEPD_WIDTH       = 640EPD_HEIGHT      = 400class EPD:    def __init__(self):        self.reset_pin = epdconfig.RST_PIN        self.dc_pin = epdconfig.DC_PIN        self.busy_pin = epdconfig.BUSY_PIN        self.cs_pin = epdconfig.CS_PIN        self.width = EPD_WIDTH        self.height = EPD_HEIGHT        self.BLACK  = 0x000000   #   0000  BGR        self.WHITE  = 0xffffff   #   0001        self.GREEN  = 0x00ff00   #   0010        self.BLUE   = 0xff0000   #   0011        self.RED    = 0x0000ff   #   0100        self.YELLOW = 0x00ffff   #   0101        self.ORANGE = 0x0080ff   #   0110                    # Hardware reset    def reset(self):        epdconfig.digital_write(self.reset_pin, 1)        epdconfig.delay_ms(200)        epdconfig.digital_write(self.reset_pin, 0)        epdconfig.delay_ms(1)        epdconfig.digital_write(self.reset_pin, 1)        epdconfig.delay_ms(200)    def send_command(self, command):        epdconfig.digital_write(self.dc_pin, 0)        epdconfig.digital_write(self.cs_pin, 0)        epdconfig.spi_writebyte([command])        epdconfig.digital_write(self.cs_pin, 1)    def send_data(self, data):        epdconfig.digital_write(self.dc_pin, 1)        epdconfig.digital_write(self.cs_pin, 0)        epdconfig.spi_writebyte([data])        epdconfig.digital_write(self.cs_pin, 1)            def ReadBusyHigh(self):        logging.debug("e-Paper busy")        while(epdconfig.digital_read(self.busy_pin) == 0):      # 0: idle, 1: busy            epdconfig.delay_ms(10)        logging.debug("e-Paper busy release")            def ReadBusyLow(self):        logging.debug("e-Paper busy")        while(epdconfig.digital_read(self.busy_pin) == 1):      # 0: idle, 1: busy            epdconfig.delay_ms(10)            logging.debug("e-Paper busy release")            def init(self):        if (epdconfig.module_init() != 0):            return -1        # EPD hardware init start        self.reset()                self.ReadBusyHigh()        self.send_command(0x00);        self.send_data(0x2f);        self.send_data(0x00);        self.send_command(0x01);        self.send_data(0x37);        self.send_data(0x00);        self.send_data(0x05);        self.send_data(0x05);        self.send_command(0x03);        self.send_data(0x00);        self.send_command(0x06);        self.send_data(0xC7);        self.send_data(0xC7);        self.send_data(0x1D);        self.send_command(0x41);        self.send_data(0x00);        self.send_command(0x50);        self.send_data(0x37);        self.send_command(0x60);        self.send_data(0x22);        self.send_command(0x61);        self.send_data(0x02);        self.send_data(0x80);        self.send_data(0x01);        self.send_data(0x90);        self.send_command(0xE3);        self.send_data(0xAA);                # EPD hardware init end        return 0    def getbuffer(self, image):        buf = [0x00] * int(self.width * self.height / 2)        image_monocolor = image.convert('RGB')#Picture mode conversion        imwidth, imheight = image_monocolor.size        pixels = image_monocolor.load()        logging.debug('imwidth = %d  imheight =  %d ',imwidth, imheight)        if(imwidth == self.width and imheight == self.height):            for y in range(imheight):                for x in range(imwidth):                    # Set the bits for the column of pixels at the current position.                    Add = int((x + y * self.width) / 2)                    Color = 0;                    if (pixels[x, y][0] == 0 and  pixels[x, y][1] == 0 and pixels[x, y][2] == 0):                        Color = 0                    elif (pixels[x, y][0] == 255 and  pixels[x, y][1] == 255 and pixels[x, y][2] == 255):                        Color = 1                    elif (pixels[x, y][0] == 0 and  pixels[x, y][1] == 255 and pixels[x, y][2] == 0):                        Color = 2                    elif (pixels[x, y][0] == 0 and  pixels[x, y][1] == 0 and pixels[x, y][2] == 255):                        Color = 3                    elif (pixels[x, y][0] == 255 and  pixels[x, y][1] == 0 and pixels[x, y][2] == 0):                        Color = 4                    elif (pixels[x, y][0] == 255 and  pixels[x, y][1] == 255 and pixels[x, y][2] == 0):                        Color = 5                    elif (pixels[x, y][0] == 255 and  pixels[x, y][1] == 128 and pixels[x, y][2] == 0):                        Color = 6                                        data_t = buf[Add]&(~(0xF0 >> ((x % 2)*4)))                    buf[Add] = data_t | ((Color << 4) >> ((x % 2)*4));                                elif(imwidth == self.height and imheight == self.width):            for y in range(imheight):                for x in range(imwidth):                    newx = y                    newy = self.height - x - 1                       Add = int((newx + newy*self.width) / 2)                    Color = 0;                    if (pixels[x, y][0] == 0 and  pixels[x, y][1] == 0 and pixels[x, y][2] == 0):                        Color = 0                    elif (pixels[x, y][0] == 255 and  pixels[x, y][1] == 255 and pixels[x, y][2] == 255):                        Color = 1                    elif (pixels[x, y][0] == 0 and  pixels[x, y][1] == 255 and pixels[x, y][2] == 0):                        Color = 2                    elif (pixels[x, y][0] == 0 and  pixels[x, y][1] == 0 and pixels[x, y][2] == 255):                        Color = 3                    elif (pixels[x, y][0] == 255 and  pixels[x, y][1] == 0 and pixels[x, y][2] == 0):                        Color = 4                    elif (pixels[x, y][0] == 255 and  pixels[x, y][1] == 255 and pixels[x, y][2] == 0):                        Color = 5                    elif (pixels[x, y][0] == 255 and  pixels[x, y][1] == 128 and pixels[x, y][2] == 0):                        Color = 6                                        data_t = buf[Add]&(~(0xF0 >> ((newx % 2)*4)))                    buf[Add] = data_t | ((Color << 4) >> ((newx % 2)*4));        return buf    def display(self,image):        self.send_command(0x61)#Set Resolution setting        self.send_data(0x02)        self.send_data(0x80)        self.send_data(0x01)        self.send_data(0x90)        self.send_command(0x10)        for i in range(0, int(EPD_HEIGHT)):            for j in range(0, int(EPD_WIDTH/2)):                self.send_data((image[j+(int(EPD_WIDTH/2)*i)]))        self.send_command(0x04)#0x04        self.ReadBusyHigh()        self.send_command(0x12)#0x12        self.ReadBusyHigh()        self.send_command(0x02)  #0x02        self.ReadBusyLow()        # epdconfig.delay_ms(500)            def Clear(self):        self.send_command(0x61)#Set Resolution setting        self.send_data(0x02)        self.send_data(0x80)        self.send_data(0x01)        self.send_data(0x90)        self.send_command(0x10)        for i in range(0, int(EPD_HEIGHT)):            for j in range(0, int(EPD_WIDTH/2)):                self.send_data(0x11)        #BLACK   0x00    /// 0000        #WHITE   0x11    /// 0001        #GREEN   0x22    /// 0010        #BLUE    0x33    /// 0011        #RED     0x44    /// 0100        #YELLOW  0x55    /// 0101        #ORANGE  0x66    /// 0110        #CLEAN   0x77    /// 0111   unavailable  Afterimage        self.send_command(0x04)#0x04        self.ReadBusyHigh()        self.send_command(0x12)#0x12        self.ReadBusyHigh()        self.send_command(0x02)  #0x02        self.ReadBusyLow()        # epdconfig.delay_ms(500)    def sleep(self):        # epdconfig.delay_ms(500)        self.send_command(0x07) # DEEP_SLEEP        self.send_data(0XA5)    def Dev_exit(self):        epdconfig.module_exit()              
 |