circuitpython/tests/extmod/qrio.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
266 B
Python
Raw Normal View History

try:
import qrio
except:
print("SKIP")
raise SystemExit
loc = __file__.rsplit("/", 1)[0]
2022-08-12 09:34:33 -04:00
with open(f"{loc}/data/qr.pgm", "rb") as f:
content = f.read()[-320 * 240 :]
decoder = qrio.QRDecoder(320, 240)
for r in decoder.decode(content):
print(r)