E-Paper-Calendar/Calendar/Epd7in5bAdapter.py

102 lines
3.9 KiB
Python
Raw Normal View History

2019-02-19 21:43:53 +01:00
from EpdAdapter import EpdAdapter, DISPLAY_REFRESH, DATA_START_TRANSMISSION_1
2019-02-19 21:49:50 +01:00
from settings import display_colours
from PIL import Image, ImageDraw
from math import sqrt, pow
2019-02-19 21:43:53 +01:00
class Epd7in5bAdapter (EpdAdapter):
2019-02-19 22:07:23 +01:00
def __init__ (self):
super(Epd7in5bAdapter, self).__init__(384, 640)
2019-02-19 21:43:53 +01:00
def display_frame (self, frame_buffer):
self.send_command(DATA_START_TRANSMISSION_1)
2019-02-28 21:58:38 +01:00
for i in range(0, int(self.height / 4 * self.width)):
2019-02-19 21:43:53 +01:00
#the above line had to be modified due to python2 -> python3
#the issue lies in division, which returns integers in python2
#but floats in python3
temp1 = frame_buffer[i]
j = 0
while (j < 4):
if ((temp1 & 0xC0) == 0xC0):
temp2 = 0x03
elif ((temp1 & 0xC0) == 0x00):
temp2 = 0x00
else:
temp2 = 0x04
temp2 = (temp2 << 4) & 0xFF
temp1 = (temp1 << 2) & 0xFF
j += 1
if((temp1 & 0xC0) == 0xC0):
temp2 |= 0x03
elif ((temp1 & 0xC0) == 0x00):
temp2 |= 0x00
else:
temp2 |= 0x04
temp1 = (temp1 << 2) & 0xFF
self.send_data(temp2)
j += 1
self.send_command(DISPLAY_REFRESH)
self.delay_ms(100)
self.wait_until_idle()
def get_frame_buffer (self, image):
2019-02-28 21:58:38 +01:00
buf = [ 0x00 ] * int(self.height * self.width / 4)
image_rgb = image
imwidth, imheight = image_rgb.size
2019-02-28 21:58:38 +01:00
if imwidth != self.height or imheight != self.width:
2019-02-19 21:43:53 +01:00
raise ValueError('Image must be same dimensions as display \
2019-02-28 21:58:38 +01:00
({0}x{1}).' .format(self.height, self.width))
2019-02-19 21:43:53 +01:00
2019-03-23 12:22:02 +01:00
for x in range(self.width):
for y in range(self.height):
2019-02-19 21:49:50 +01:00
# Set the bits for the column of pixels at the current
# position.
2019-03-23 12:22:02 +01:00
pixel = image_rgb.getpixel((y, x))
color = self.__get_color__(pixel)
if color is 'white':
2019-03-23 12:22:02 +01:00
buf[int((y + x * self.height) / 4)] |= 0xC0 >> (y % 4 * 2)
elif color is 'black':
2019-03-23 12:22:02 +01:00
buf[int((y + x * self.height) / 4)] &= ~(0xC0 >> (y % 4 * 2))
if color is 'red':
2019-03-23 12:22:02 +01:00
buf[int((y + x * self.height) / 4)] &= ~(0xC0 >> (y % 4 * 2))
buf[int((y + x * self.height) / 4)] |= 0x40 >> (y % 4 * 2)
2019-02-19 21:43:53 +01:00
return buf #due to python2 -> python3, int had to be added in 'get_frame
2019-02-19 21:49:50 +01:00
#_buffer
def __get_color__ (self, pixel):
color_percent = self.__get_color_percentage__(pixel)
brightness = self.__brightness__(pixel)
2019-04-07 16:44:27 +02:00
if brightness > 240:
return 'white'
2019-03-10 16:05:42 +01:00
elif color_percent[0] > 35:
return 'red'
else:
return 'black'
def __get_color_percentage__ (self, pixel):
sum = pixel[0] + pixel[1] + pixel[2]
if sum is 0:
return (0,0,0)
return (pixel[0] / sum * 100, pixel[1] / sum * 100, pixel[2] / sum * 100)
def __brightness__ (self, pixel):
return (pixel[0] + pixel[1] + pixel[2]) / 3
2019-02-19 21:49:50 +01:00
def calibrate (self):
for _ in range(2):
self.init_render()
black = Image.new('RGB', (self.height, self.width), 'black')
2019-02-19 21:49:50 +01:00
print('calibrating black...')
ImageDraw.Draw(black)
self.display_frame(self.get_frame_buffer(black))
red = Image.new('RGB', (self.height, self.width), 'red')
2019-02-19 21:49:50 +01:00
ImageDraw.Draw(red)
print('calibrating red...')
self.display_frame(self.get_frame_buffer(red))
white = Image.new('RGB', (self.height, self.width), 'white')
2019-02-19 21:49:50 +01:00
ImageDraw.Draw(white)
print('calibrating white...')
self.display_frame(self.get_frame_buffer(white))
self.sleep()
print('Calibration complete')