decode QR as RGB565

This commit is contained in:
Thomas Farstrike
2025-05-14 22:40:50 +02:00
parent 5a05457ef6
commit 1f7bb80e81
@@ -43,7 +43,7 @@ def qrdecode_live():
while keepgoing and keepliveqrdecoding:
try:
import qrdecode
result = qrdecode.qrdecode(current_cam_buffer, width, height)
result = qrdecode.qrdecode_rgb565(current_cam_buffer, width, height)
result = remove_bom(result)
result = print_qr_buffer(result)
print(f"QR decoding found: {result}")