Skip to content

Commit

Permalink
Fix sleep/wake not working.
Browse files Browse the repository at this point in the history
Fixes #42 😁 with the same juju as used in the referenced issue.
  • Loading branch information
EAGrahamJr committed Jun 13, 2024
1 parent 85c854e commit c923dc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adafruit_displayio_ssd1306.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ 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:
"""
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

0 comments on commit c923dc2

Please sign in to comment.