circuitpython/tests/extmod/qrio.py
2024-09-05 14:54:18 -04:00

14 lines
322 B
Python

# CIRCUITPY-CHANGE: micropython does not have this file
try:
import qrio
except:
print("SKIP")
raise SystemExit
loc = __file__.rsplit("/", 1)[0]
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)