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 aa97924 commit 5577330Copy full SHA for 5577330
adafruit_ssd1306.py
@@ -154,7 +154,8 @@ def rotate(self, rotate):
154
"""Rotate the display 0 or 180 degrees"""
155
self.write_cmd(SET_COM_OUT_DIR | ((rotate & 1) << 3))
156
self.write_cmd(SET_SEG_REMAP | (rotate & 1))
157
- # com output is immediate (vertical mirror) but you need to call show() for seg remap to be visible
+ # com output (vertical mirror) is changed immediately
158
+ # you need to call show() for the seg remap to be visible
159
160
def write_framebuf(self):
161
"""Derived class must implement this"""
0 commit comments