We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f9e497 commit 198f317Copy full SHA for 198f317
1 file changed
CircuitPython_qr_io/code.py
@@ -103,8 +103,6 @@
103
display.show(g)
104
display.auto_refresh = False
105
106
-i = 0
107
-spin = ".oOo"
108
old_payload = None
109
while True:
110
cam.capture(bitmap)
@@ -126,10 +124,6 @@
126
124
except OSError as e:
127
125
print(e)
128
mqtt_client.reconnect()
129
- old_payload = payload
130
- else:
131
- print(end="+")
132
- print(spin[(i := (i + 1) % len(spin))], end="\10")
133
134
# Clear out the odd bytes, so that the bitmap displays as greyscale
135
view[1::2] = 0
0 commit comments