aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
Diffstat (limited to 'klippy')
-rw-r--r--klippy/extras/display/uc1701.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/display/uc1701.py b/klippy/extras/display/uc1701.py
index 8f301df2..8f9d1d53 100644
--- a/klippy/extras/display/uc1701.py
+++ b/klippy/extras/display/uc1701.py
@@ -54,8 +54,8 @@ class DisplayBase:
bits_bot = [0] * 8
for row in range(8):
for col in range(8):
- bits_top[col] |= ((data[row] >> (8 - col)) & 1) << row
- bits_bot[col] |= ((data[row + 8] >> (8 - col)) & 1) << row
+ bits_top[col] |= ((data[row] >> (7 - col)) & 1) << row
+ bits_bot[col] |= ((data[row + 8] >> (7 - col)) & 1) << row
return (bits_top, bits_bot)
def write_text(self, x, y, data):
if x + len(data) > 16: