Files
pwnagotchi/pwnagotchi/ui/hw/libs/waveshare/lcd/lcdhat1in47/LCD_1inch47.py
jayofelony 9287283ee7 Added 11 waveshare lcd displays
Signed-off-by: jayofelony <oudshoorn.jeroen@gmail.com>
2024-03-25 22:53:07 +01:00

153 lines
4.3 KiB
Python

import time
from pwnagotchi.ui.hw.libs.waveshare.lcd import lcdconfig
class LCD_1inch47(lcdconfig.RaspberryPi):
width = 172
height = 320
def command(self, cmd):
self.digital_write(self.DC_PIN, False)
self.spi_writebyte([cmd])
def data(self, val):
self.digital_write(self.DC_PIN, True)
self.spi_writebyte([val])
def reset(self):
"""Reset the display"""
self.digital_write(self.RST_PIN, True)
time.sleep(0.01)
self.digital_write(self.RST_PIN, False)
time.sleep(0.01)
self.digital_write(self.RST_PIN, True)
time.sleep(0.01)
def Init(self):
"""Initialize dispaly"""
self.module_init()
self.reset()
self.command(0x36)
self.data(0x00) # self.data(0x00)
self.command(0x3A)
self.data(0x05)
self.command(0xB2)
self.data(0x0C)
self.data(0x0C)
self.data(0x00)
self.data(0x33)
self.data(0x33)
self.command(0xB7)
self.data(0x35)
self.command(0xBB)
self.data(0x35)
self.command(0xC0)
self.data(0x2C)
self.command(0xC2)
self.data(0x01)
self.command(0xC3)
self.data(0x13)
self.command(0xC4)
self.data(0x20)
self.command(0xC6)
self.data(0x0F)
self.command(0xD0)
self.data(0xA4)
self.data(0xA1)
self.command(0xE0)
self.data(0xF0)
self.data(0xF0)
self.data(0x00)
self.data(0x04)
self.data(0x04)
self.data(0x04)
self.data(0x05)
self.data(0x29)
self.data(0x33)
self.data(0x3E)
self.data(0x38)
self.data(0x12)
self.data(0x12)
self.data(0x28)
self.data(0x30)
self.command(0xE1)
self.data(0xF0)
self.data(0x07)
self.data(0x0A)
self.data(0x0D)
self.data(0x0B)
self.data(0x07)
self.data(0x28)
self.data(0x33)
self.data(0x3E)
self.data(0x36)
self.data(0x14)
self.data(0x14)
self.data(0x29)
self.data(0x32)
self.command(0x21)
self.command(0x11)
self.command(0x29)
def SetWindows(self, Xstart, Ystart, Xend, Yend):
# set the X coordinates
self.command(0x2A)
self.data((Xstart) >> 8 & 0xff) # Set the horizontal starting point to the high octet
self.data((Xstart + 34) & 0xff) # Set the horizontal starting point to the low octet
self.data((Xend - 1 + 34) >> 8 & 0xff) # Set the horizontal end to the high octet
self.data((Xend - 1 + 34) & 0xff) # Set the horizontal end to the low octet
# set the Y coordinates
self.command(0x2B)
self.data((Ystart) >> 8 & 0xff)
self.data((Ystart) & 0xff)
self.data((Yend - 1) >> 8 & 0xff)
self.data((Yend - 1) & 0xff)
self.command(0x2C)
def ShowImage(self, Image):
"""Set buffer to value of Python Imaging Library image."""
"""Write display buffer to physical display"""
imwidth, imheight = Image.size
if imwidth != self.width or imheight != self.height:
raise ValueError('Image must be same dimensions as display \
({0}x{1}).'.format(self.width, self.height))
img = self.np.asarray(Image)
pix = self.np.zeros((self.height, self.width, 2), dtype=self.np.uint8)
pix[..., [0]] = self.np.add(self.np.bitwise_and(img[..., [0]], 0xF8), self.np.right_shift(img[..., [1]], 5))
pix[..., [1]] = self.np.add(self.np.bitwise_and(self.np.left_shift(img[..., [1]], 3), 0xE0),
self.np.right_shift(img[..., [2]], 3))
pix = pix.flatten().tolist()
self.SetWindows(0, 0, self.width, self.height)
self.digital_write(self.DC_PIN, True)
for i in range(0, len(pix), 4096):
self.spi_writebyte(pix[i:i + 4096])
def clear(self):
"""Clear contents of image buffer"""
_buffer = [0xff] * (self.width * self.height * 2)
self.SetWindows(0, 0, self.width, self.height)
self.digital_write(self.DC_PIN, True)
for i in range(0, len(_buffer), 4096):
self.spi_writebyte(_buffer[i:i + 4096])