pdf-icon

UIFlow Guide

UIFlow 1.0 Blockly

Event

Unit

Atomic Base

UIFlow 1.0 Project

QR-Code2

Sample Program

Upon clicking ButtonA, turn on the QR-Code2 LED light, trigger the scan, and output the scanned data to the console if successful.

from m5stack import *
from m5ui import *
from uiflow import *
from base.QRCode2 import QRCode2
import time

data = None

qrcode2 = QRCode2(1)

def qrcode2_event_cb(qrdata):
  global data
  data = qrdata
  print(data.decode())
  pass

qrcode2.set_event_cb(qrcode2_event_cb)

def buttonA_wasPressed():
  global data
  qrcode2.set_trigger_key()
  pass
btnA.wasPressed(buttonA_wasPressed)

print(qrcode2.get_firmware_version())
print(qrcode2.get_hardware_model())
qrcode2.set_light_brightness(75)
qrcode2.set_trigger_mode(0)

while True:
  qrcode2.event_poll_loop()
  wait_ms(100)
  wait_ms(2)

Functional Description

qrcode2 = QRCode2(1)
  • Get the current baud rate (baud rate) and return an int type data.
print(qrcode2.get_baudrate())
  • Get the current baud rate (baud rate) and return an int type data.
print(qrcode2.get_data(False))
  • Get the currently stored QR code data. The parameter False is used to indicate whether to process the returned data. If the QR code has been successfully read, it will return the data from the QR code.
print(qrcode2.get_data_length())
  • Get the length of the currently stored QR code data.
print(qrcode2.get_firmware_version())
  • Get the firmware version model.
print(qrcode2.get_hardware_model())
  • Get the hardware model.
qrcode2.set_baudrate(115200)
  • Set the baud rate to 115200. Configure the serial communication speed.
qrcode2.set_light_brightness(57)
  • Set the brightness of the LED assist light to 57% to enable successful scanning of QR codes even in low-light conditions.
qrcode2.set_trigger_cmd(0x01)
  • Set the trigger mode. Control the behavior of the QR code scanner, such as continuous scanning or single scanning.
qrcode2.set_trigger_key()
  • Set or trigger the scanning action.
qrcode2.set_trigger_mode(5)
  • Set the trigger mode of the QR code scanning device. AUTO: automatic triggering; MANUAL: manual triggering.
data = None

def qrcode2_event_cb(qrdata):
  global data
  data = qrdata
  pass
  • Callback function, triggered upon successful scanning, and assigns the scanned result to the variable date. (Note: Assuming you meant data rather than date for the variable name.)
while True:
  qrcode2.event_poll_loop()
  wait_ms(100)
  wait_ms(2)
  • Poll the QRCode2 module to check if a new QR code has been scanned.
On This Page