Skip to content

Commit ce9dfde

Browse files
authored
Merge pull request #28 from ladyada/master
add two more eink displays, fix linux support
2 parents 6da61f7 + bd4737a commit ce9dfde

File tree

8 files changed

+551
-43
lines changed

8 files changed

+551
-43
lines changed

adafruit_epd/epd.py

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -340,24 +340,19 @@ def image(self, image):
340340
if imwidth != self.width or imheight != self.height:
341341
raise ValueError('Image must be same dimensions as display ({0}x{1}).' \
342342
.format(self.width, self.height))
343+
if self.sram:
344+
raise RuntimeError("PIL image is not for use with SRAM assist")
343345
# Grab all the pixels from the image, faster than getpixel.
344346
pix = image.load()
347+
# clear out any display buffers
348+
self.fill(Adafruit_EPD.WHITE)
345349

346-
for y in iter(range(image.size[1])):
347-
for x in iter(range(image.size[0])):
348-
if x == 0:
349-
x = 1
350+
for y in range(image.size[1]):
351+
for x in range(image.size[0]):
350352
pixel = pix[x, y]
351-
352-
addr = int(((self._width - x) * self._height + y)/8)
353-
354-
if pixel == (0xFF, 0, 0):
355-
addr = addr + self._buffer1_size
356-
current = self.sram.read8(addr)
357-
358-
if pixel in ((0xFF, 0, 0), (0, 0, 0)):
359-
current = current & ~(1 << (7 - y%8))
360-
else:
361-
current = current | (1 << (7 - y%8))
362-
363-
self.sram.write8(addr, current)
353+
if (pixel[0] >= 0x80) and (pixel[1] < 0x80) and (pixel[2] < 0x80):
354+
# reddish
355+
self.pixel(x, y, Adafruit_EPD.RED)
356+
elif (pixel[0] < 0x80) and (pixel[1] < 0x80) and (pixel[2] < 0x80):
357+
# dark
358+
self.pixel(x, y, Adafruit_EPD.BLACK)

adafruit_epd/ssd1675.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@ class Adafruit_SSD1675(Adafruit_EPD):
6868
def __init__(self, width, height, spi, *, cs_pin, dc_pin, sramcs_pin, rst_pin, busy_pin):
6969
super(Adafruit_SSD1675, self).__init__(width, height, spi, cs_pin, dc_pin,
7070
sramcs_pin, rst_pin, busy_pin)
71-
if width % 8 != 0:
72-
width += (8 - width % 8)
71+
stride = width
72+
if stride % 8 != 0:
73+
stride += (8 - stride % 8)
7374

74-
self._buffer1_size = int(width * height / 8)
75+
self._buffer1_size = int(stride * height / 8)
7576
self._buffer2_size = self._buffer1_size
7677

7778
if sramcs_pin:
@@ -82,9 +83,9 @@ def __init__(self, width, height, spi, *, cs_pin, dc_pin, sramcs_pin, rst_pin, b
8283
self._buffer2 = bytearray(self._buffer2_size)
8384
# since we have *two* framebuffers - one for red and one for black
8485
# we dont subclass but manage manually
85-
self._framebuf1 = adafruit_framebuf.FrameBuffer(self._buffer1, width, height,
86+
self._framebuf1 = adafruit_framebuf.FrameBuffer(self._buffer1, width, height, stride=stride,
8687
buf_format=adafruit_framebuf.MHMSB)
87-
self._framebuf2 = adafruit_framebuf.FrameBuffer(self._buffer2, width, height,
88+
self._framebuf2 = adafruit_framebuf.FrameBuffer(self._buffer2, width, height, stride=stride,
8889
buf_format=adafruit_framebuf.MHMSB)
8990
self.set_black_buffer(0, True)
9091
self.set_color_buffer(0, True)

adafruit_epd/ssd1675b.py

Lines changed: 214 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,214 @@
1+
# The MIT License (MIT)
2+
#
3+
# Copyright (c) 2018 Dean Miller for Adafruit Industries
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to deal
7+
# in the Software without restriction, including without limitation the rights
8+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
# copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in
13+
# all copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
# THE SOFTWARE.
22+
"""
23+
`adafruit_epd.ssd1675b` - Adafruit SSD1675 - ePaper display driver
24+
====================================================================================
25+
CircuitPython driver for Adafruit SSD1675 display breakouts
26+
* Author(s): Dean Miller, Ladyada
27+
"""
28+
29+
import time
30+
from micropython import const
31+
import adafruit_framebuf
32+
from adafruit_epd.epd import Adafruit_EPD
33+
34+
__version__ = "0.0.0-auto.0"
35+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"
36+
37+
_SSD1675B_DRIVER_CONTROL = const(0x01)
38+
_SSD1675B_GATE_VOLTAGE = const(0x03)
39+
_SSD1675B_SOURCE_VOLTAGE = const(0x04)
40+
_SSD1675B_INIT_SETTING = const(0x08)
41+
_SSD1675B_INIT_WRITE_REG = const(0x09)
42+
_SSD1675B_INIT_READ_REG = const(0x0A)
43+
_SSD1675B_BOOSTER_SOFT_START = const(0x0C)
44+
_SSD1675B_GATESCAN_START = const(0x0F)
45+
_SSD1675B_DEEP_SLEEP = const(0x10)
46+
_SSD1675B_DATA_MODE = const(0x11)
47+
_SSD1675B_SW_RESET = const(0x12)
48+
_SSD1675B_HV_READY = const(0x14)
49+
_SSD1675B_VCI_READY = const(0x15)
50+
_SSD1675B_TEMP_CONTROL = const(0x18)
51+
_SSD1675B_TEMP_WRITE = const(0x1A)
52+
_SSD1675B_TEMP_READ = const(0x1B)
53+
_SSD1675B_EXTTEMP_WRITE = const(0x1C)
54+
_SSD1675B_MASTER_ACTIVATE = const(0x20)
55+
_SSD1675B_DISP_CTRL1 = const(0x21)
56+
_SSD1675B_DISP_CTRL2 = const(0x22)
57+
_SSD1675B_WRITE_RAM1 = const(0x24)
58+
_SSD1675B_WRITE_RAM2 = const(0x26)
59+
_SSD1675B_READ_RAM = const(0x27)
60+
_SSD1675B_VCOM_SENSE = const(0x28)
61+
_SSD1675B_VCOM_DURATION = const(0x29)
62+
_SSD1675B_WRITE_VCOM_OTP = const(0x2A)
63+
_SSD1675B_WRITE_VCOM_CTRL = const(0x2B)
64+
_SSD1675B_WRITE_VCOM_REG = const(0x2C)
65+
_SSD1675B_READ_OTP = const(0x2D)
66+
_SSD1675B_READ_USERID = const(0x2E)
67+
_SSD1675B_READ_STATUS = const(0x2F)
68+
_SSD1675B_WRITE_WS_OTP = const(0x30)
69+
_SSD1675B_LOAD_WS_OTP = const(0x31)
70+
_SSD1675B_WRITE_LUT = const(0x32)
71+
_SSD1675B_CRC_CALC = const(0x34)
72+
_SSD1675B_CRC_READ = const(0x35)
73+
_SSD1675B_PROG_OTP = const(0x36)
74+
_SSD1675B_WRITE_DISPLAY_OPT = const(0x37)
75+
_SSD1675B_WRITE_USERID = const(0x38)
76+
_SSD1675B_OTP_PROGMODE = const(0x39)
77+
_SSD1675B_WRITE_DUMMY = const(0x3A)
78+
_SSD1675B_WRITE_GATELINE = const(0x3B)
79+
_SSD1675B_WRITE_BORDER = const(0x3C)
80+
_SSD1675B_SET_RAMXPOS = const(0x44)
81+
_SSD1675B_SET_RAMYPOS = const(0x45)
82+
_SSD1675B_AUTOWRITE_RED = const(0x46)
83+
_SSD1675B_AUTOWRITE_BW = const(0x47)
84+
_SSD1675B_SET_RAMXCOUNT = const(0x4E)
85+
_SSD1675B_SET_RAMYCOUNT = const(0x4F)
86+
_SSD1675B_SET_ANALOGBLOCK = const(0x74)
87+
_SSD1675B_SET_DIGITALBLOCK = const(0x7E)
88+
_SSD1675B_NOP = const(0xFF)
89+
_LUT_DATA = b'\xa0\x90P\x00\x00\x00\x00\x00\x00\x00P\x90\xa0\x00\x00\x00\x00\x00\x00\x00\xa0\x90P\x00\x00\x00\x00\x00\x00\x00P\x90\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x0f\x00\x00\x00\x0f\x0f\x00\x00\x03\x0f\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15A\xa82P,\x0b' # pylint: disable=line-too-long
90+
91+
class Adafruit_SSD1675B(Adafruit_EPD):
92+
"""driver class for Adafruit SSD1675B ePaper display breakouts"""
93+
# pylint: disable=too-many-arguments
94+
def __init__(self, width, height, spi, *, cs_pin, dc_pin, sramcs_pin, rst_pin, busy_pin):
95+
super(Adafruit_SSD1675B, self).__init__(width, height, spi, cs_pin, dc_pin,
96+
sramcs_pin, rst_pin, busy_pin)
97+
stride = width
98+
if stride % 8 != 0:
99+
stride += (8 - stride % 8)
100+
101+
self._buffer1_size = int(stride * height / 8)
102+
self._buffer2_size = self._buffer1_size
103+
104+
if sramcs_pin:
105+
self._buffer1 = self.sram.get_view(0)
106+
self._buffer2 = self.sram.get_view(self._buffer1_size)
107+
else:
108+
self._buffer1 = bytearray(self._buffer1_size)
109+
self._buffer2 = bytearray(self._buffer2_size)
110+
# since we have *two* framebuffers - one for red and one for black
111+
# we dont subclass but manage manually
112+
self._framebuf1 = adafruit_framebuf.FrameBuffer(self._buffer1, width, height, stride=stride,
113+
buf_format=adafruit_framebuf.MHMSB)
114+
self._framebuf2 = adafruit_framebuf.FrameBuffer(self._buffer2, width, height, stride=stride,
115+
buf_format=adafruit_framebuf.MHMSB)
116+
self.set_black_buffer(0, True)
117+
self.set_color_buffer(0, True)
118+
# pylint: enable=too-many-arguments
119+
120+
def begin(self, reset=True):
121+
"""Begin communication with the display and set basic settings"""
122+
if reset:
123+
self.hardware_reset()
124+
self.power_down()
125+
126+
def busy_wait(self):
127+
"""Wait for display to be done with current task, either by polling the
128+
busy pin, or pausing"""
129+
if self._busy:
130+
while self._busy.value:
131+
time.sleep(0.01)
132+
else:
133+
time.sleep(0.5)
134+
135+
def power_up(self):
136+
"""Power up the display in preparation for writing RAM and updating"""
137+
self.hardware_reset()
138+
time.sleep(0.1)
139+
self.busy_wait()
140+
141+
self.command(_SSD1675B_SW_RESET)
142+
self.busy_wait()
143+
144+
# set analog block control
145+
self.command(_SSD1675B_SET_ANALOGBLOCK, bytearray([0x54]))
146+
# set digital block control
147+
self.command(_SSD1675B_SET_DIGITALBLOCK, bytearray([0x3B]))
148+
149+
self.command(_SSD1675B_DRIVER_CONTROL,
150+
bytearray([self._height-1, (self._height-1) >> 8, 0x00]))
151+
152+
# Data entry sequence
153+
self.command(_SSD1675B_DATA_MODE, bytearray([0x03]))
154+
155+
# Set ram X start/end postion
156+
self.command(_SSD1675B_SET_RAMXPOS, bytearray([0x00, self._width // 8]))
157+
# Set ram Y start/end postion
158+
self.command(_SSD1675B_SET_RAMYPOS,
159+
bytearray([0x0, 0x0, self._height-1, (self._height-1) >> 8]))
160+
161+
# Border color
162+
self.command(_SSD1675B_WRITE_BORDER, bytearray([0x03]))
163+
164+
# Vcom Voltage
165+
self.command(_SSD1675B_WRITE_VCOM_REG, bytearray([0x50]))
166+
# Set gate voltage
167+
self.command(_SSD1675B_GATE_VOLTAGE, _LUT_DATA[100:101])
168+
# Set source voltage
169+
self.command(_SSD1675B_SOURCE_VOLTAGE, _LUT_DATA[101:104])
170+
# Set dummy line period
171+
self.command(_SSD1675B_WRITE_DUMMY, _LUT_DATA[105:106])
172+
# Set gate line width
173+
self.command(_SSD1675B_WRITE_GATELINE, _LUT_DATA[106:107])
174+
# LUT
175+
self.command(_SSD1675B_WRITE_LUT, _LUT_DATA[0:100])
176+
177+
# Set temperature control
178+
#self.command(_SSD1675B_TEMP_CONTROL, bytearray([0x80]))
179+
180+
# Set RAM X address counter
181+
self.command(_SSD1675B_SET_RAMXCOUNT, bytearray([0]))
182+
# Set RAM Y address counter
183+
self.command(_SSD1675B_SET_RAMYCOUNT, bytearray([self._height-1, (self._height-1) >> 8]))
184+
185+
self.busy_wait()
186+
187+
def power_down(self):
188+
"""Power down the display - required when not actively displaying!"""
189+
self.command(_SSD1675B_DEEP_SLEEP, bytearray([0x01]))
190+
time.sleep(0.1)
191+
192+
def update(self):
193+
"""Update the display from internal memory"""
194+
self.command(_SSD1675B_DISP_CTRL2, bytearray([0xC7]))
195+
self.command(_SSD1675B_MASTER_ACTIVATE)
196+
self.busy_wait()
197+
if not self._busy:
198+
time.sleep(3) # wait 3 seconds
199+
200+
def write_ram(self, index):
201+
"""Send the one byte command for starting the RAM write process. Returns
202+
the byte read at the same time over SPI. index is the RAM buffer, can be
203+
0 or 1 for tri-color displays."""
204+
if index == 0:
205+
return self.command(_SSD1675B_WRITE_RAM1, end=False)
206+
if index == 1:
207+
return self.command(_SSD1675B_WRITE_RAM2, end=False)
208+
raise RuntimeError("RAM index must be 0 or 1")
209+
210+
def set_ram_address(self, x, y): # pylint: disable=unused-argument, no-self-use
211+
"""Set the RAM address location, not used on this chipset but required by
212+
the superclass"""
213+
self.command(_SSD1675B_SET_RAMXCOUNT, bytearray([x]))
214+
self.command(_SSD1675B_SET_RAMYCOUNT, bytearray([y, y>>8]))

0 commit comments

Comments
 (0)