Skip to content

Commit

Permalink
Merge pull request #26 from tekktrik/dev/change-data-to-bytes
Browse files Browse the repository at this point in the history
Change data param of send() to bytes
  • Loading branch information
dhalbert committed Mar 17, 2022
2 parents 87877c2 + def1b51 commit c72e094
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 @@ -105,13 +105,13 @@ def sleep(self):
active prior to sleeping. MP can access (update) the built-in display RAM.
"""
if self._is_awake:
self.bus.send(int(0xAE), "") # 0xAE = display off, sleep mode
self.bus.send(0xAE, b"") # 0xAE = display off, sleep mode
self._is_awake = False

def wake(self):
"""
Wake display from sleep mode
"""
if not self._is_awake:
self.bus.send(int(0xAF), "") # 0xAF = display on
self.bus.send(0xAF, b"") # 0xAF = display on
self._is_awake = True

0 comments on commit c72e094

Please sign in to comment.