From 1f7bb80e810202f4891971237161ea31f911fed3 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 14 May 2025 22:40:50 +0200 Subject: [PATCH] decode QR as RGB565 --- internal_filesystem/apps/com.example.camtest/assets/camtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/apps/com.example.camtest/assets/camtest.py b/internal_filesystem/apps/com.example.camtest/assets/camtest.py index 567d347f..32c28c4d 100644 --- a/internal_filesystem/apps/com.example.camtest/assets/camtest.py +++ b/internal_filesystem/apps/com.example.camtest/assets/camtest.py @@ -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}")