当我将Parallax RFID USB读卡器插入Windows上的usb端口并扫描标签时,我得到0004268206但是当我使用python在Raspberry Pi上使用此读取器阅读RFID标签的每个教程时,我得到一个完全不同的数字。如何在Windows中通过USB读取内容?
import serial
ser = serial.Serial('/dev/ttyUSB0', 2400)
while True:
try:
response = ser.read(12)
print str(response)
except KeyboardInterrupt:
break
ser.close()
我得到2010E
有什么想法吗?