From c923dc238259660e869a7282b05f31098120ea44 Mon Sep 17 00:00:00 2001 From: "E. A. Graham Jr." <10370165+EAGrahamJr@users.noreply.github.com> Date: Thu, 13 Jun 2024 12:32:49 -0700 Subject: [PATCH] Fix sleep/wake not working. Fixes #42 :grin: with the same juju as used in the referenced issue. --- adafruit_displayio_ssd1306.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adafruit_displayio_ssd1306.py b/adafruit_displayio_ssd1306.py index 3e67cfe..1eefde4 100644 --- a/adafruit_displayio_ssd1306.py +++ b/adafruit_displayio_ssd1306.py @@ -127,7 +127,7 @@ def sleep(self) -> None: active prior to sleeping. MP can access (update) the built-in display RAM. """ if self._is_awake: - self.bus.send(0xAE, b"") # 0xAE = display off, sleep mode + self.bus.send(0xAE, []) # 0xAE = display off, sleep mode self._is_awake = False def wake(self) -> None: @@ -135,5 +135,5 @@ def wake(self) -> None: Wake display from sleep mode """ if not self._is_awake: - self.bus.send(0xAF, b"") # 0xAF = display on + self.bus.send(0xAF, []) # 0xAF = display on self._is_awake = True
Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.
Alternative Proxies: