Skip to content

Commit 6b19e3e

Browse files
committed
fix text, turn off single byte
1 parent 6044f11 commit 6b19e3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_epd/uc8179.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def __init__(
102102
self.set_color_buffer(1, False)
103103

104104
# UC8179 uses single byte transactions
105-
self._single_byte_tx = True
105+
self._single_byte_tx = False
106106

107107
# Default refresh delay (from Adafruit_EPD base class in Arduino)
108108
self.default_refresh_delay = 15 # seconds
@@ -151,7 +151,7 @@ def power_up(self) -> None:
151151
self.busy_wait()
152152

153153
# Panel setting
154-
self.command(_UC8179_PANELSETTING, bytearray([0b010111])) # BW OTP LUT
154+
self.command(_UC8179_PANELSETTING, bytearray([0b011111])) # BW OTP LUT
155155

156156
# Resolution setting
157157
self.command(

0 commit comments

Comments
 (0)