Skip to content

Commit 1f7bb80

Browse files
decode QR as RGB565
1 parent 5a05457 commit 1f7bb80

File tree

1 file changed

+1
-1
lines changed
  • internal_filesystem/apps/com.example.camtest/assets

1 file changed

+1
-1
lines changed

internal_filesystem/apps/com.example.camtest/assets/camtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def qrdecode_live():
4343
while keepgoing and keepliveqrdecoding:
4444
try:
4545
import qrdecode
46-
result = qrdecode.qrdecode(current_cam_buffer, width, height)
46+
result = qrdecode.qrdecode_rgb565(current_cam_buffer, width, height)
4747
result = remove_bom(result)
4848
result = print_qr_buffer(result)
4949
print(f"QR decoding found: {result}")

0 commit comments

Comments
 (0)