关于二维码的疑问
-
各位大神们,我在扫描二维码时遇到了问题,我想把二维码扫描到的内容(内容是123)通过串口发送出去,请问具体发送的语句该怎么改呢,我现在用的是下面的程序,但每次扫到二维码时都报错,求大神帮助!!!!!
import time from pyb import UART import sensor, image sensor.reset() sensor.set_pixformat(sensor.RGB565) sensor.set_framesize(sensor.QQVGA) # can be QVGA on M7... sensor.skip_frames(30) sensor.set_auto_gain(False) # must turn this off to prevent image washout... uart = UART(3, 19200) while(True): img = sensor.snapshot() img.lens_corr(1.8) # strength of 1.8 is good for the 2.8mm lens. for code in img.find_qrcodes(): print(code) write(code.payload)
-
各位大神,我知道code是一长串东西,我也知道应该发送code里面的payload,但是关键就在于怎么发送他呢,我尝试了write(code.payload) write(payload) write(code(payload))
write(code.payload()),然后前面又加了uart.都试了一遍,每一个都不行,我真的快崩溃了,到底什么语句能使得我直接发送code中的payload呢?肯定得有这个语句吧!麻烦各位大神了!!!!!!!!!
-
uart.write(code.payload())
-
谢谢了,之前我测试的时候没成功,后来在前面加了一个变量之后成功了,谢谢
-
@openmv萌新 请问是怎么解决的?
-
code.pyload()
你没加括号。