We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6044f11 commit 6b19e3eCopy full SHA for 6b19e3e
adafruit_epd/uc8179.py
@@ -102,7 +102,7 @@ def __init__(
102
self.set_color_buffer(1, False)
103
104
# UC8179 uses single byte transactions
105
- self._single_byte_tx = True
+ self._single_byte_tx = False
106
107
# Default refresh delay (from Adafruit_EPD base class in Arduino)
108
self.default_refresh_delay = 15 # seconds
@@ -151,7 +151,7 @@ def power_up(self) -> None:
151
self.busy_wait()
152
153
# Panel setting
154
- self.command(_UC8179_PANELSETTING, bytearray([0b010111])) # BW OTP LUT
+ self.command(_UC8179_PANELSETTING, bytearray([0b011111])) # BW OTP LUT
155
156
# Resolution setting
157
self.command(
0 commit comments