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 0f8584f commit 51fdef1Copy full SHA for 51fdef1
examples/epd_bitmap.py
@@ -84,7 +84,6 @@ def display_bitmap(epd, filename):
84
rowSize = (bmpWidth * 3 + 3) & ~3 # 32-bit line boundary
85
86
for row in range(bmpHeight): # For each scanline...
87
- print(row)
88
if flip: # Bitmap is stored bottom-to-top order (normal BMP)
89
pos = bmpImageoffset + (bmpHeight - 1 - row) * rowSize
90
else: # Bitmap is stored top-to-bottom
0 commit comments