Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove int() usage
Co-authored-by: Dan Halbert <halbert@halwitz.org>
  • Loading branch information
tekktrik and dhalbert authored Mar 17, 2022
commit def1b515c64df57c2fa34e7563e0b82dd908e695
2 changes: 1 addition & 1 deletion adafruit_displayio_ssd1306.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,5 @@ def wake(self):
Wake display from sleep mode
"""
if not self._is_awake:
self.bus.send(int(0xAF), b"") # 0xAF = display on
self.bus.send(0xAF, b"") # 0xAF = display on
self._is_awake = True