我最近买了这款NFC / RFID阅读器PN532 module V3
我想将它与我的树莓派3一起使用。我已经安装并配置了库libnfc。 PN532与I2C连接。我已经在我的RPi上启用了它。
我的问题是我无法扫描任何东西。实际上,当我在控制台中运行函数nfc-poll
时,我得到了这个:
nfc-poll uses libnfc 1.7.1
NFC reader: pn532_i2c:/dev/i2c-1 opened
NFC device will poll during 30000 ms (20 pollings of 300 ms for 5 modulations)
nfc_initiator_poll_target: Success
在民意调查期间,我在PN532附近传递了许多不同的标签,甚至是带有它的那些标签。但是从来没有任何发现。尽管如此,RPi似乎与PN532正确通信,如第二行所示。
命令i2cdetect -y 1
正在返回:
0 1 2 3 4 5 6 7 8 9 a b c d e f
00: -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20: -- -- -- -- 24 -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --
PN532接线如下:
我检查了接线(我已经将黄色指示灯打开,如果我删除SDA或SCL连接,我会收到一条错误消息,尝试nfc-poll
表示连接正常)
我已经检查了PN532上两个开关的位置,以启用I2C通信。
我的libnfc配置文件(/etc/nfc/libnfc.conf
)如下:
# Allow device auto-detection (default: true)
# Note: if this auto-detection is disabled, user has to set manually a device
# configuration using file or environment variable
allow_autoscan = true
# Allow intrusive auto-detection (dehttp://www.jamesrobertson.eu/pages/2014/mar/30/rfid-module.htmlfault: false)
# Warning: intrusive auto-detection can seriously disturb other devices
# This option is not recommended, user should prefer to add manually his device.
allow_intrusive_scan = false
# Set log level (default: error)
# Valid log levels are (in order of verbosity): 0 (none), 1 (error), 2 (info), 3 (debug)
# Note: if you compiled with --enable-debug option, the default log level is "debug"
log_level = 1
# Manually set default device (no default)
# To set a default device, you must set both name and connstring for your device
# Note: if autoscan is enabled, default device will be the first device available in device list.
device.name = "Itead_PN532_SPI"
device.connstring = "pn532_i2c:/dev/i2c-1"
我尝试将参数allow_intrusive_scan
设置为true
,但它不会改变任何内容。
答案 0 :(得分:-1)
“Raspberry Pi 没有提供足够的电流来驱动 PN532 chip
。如果您尝试在 PN532
上运行 Raspberry Pi
,它将随机重置并且可能不会响应命令。相反,您将需要 another power source (3.3v) to power the PN532
。”
我找到了这篇文章,它可能会有所帮助。 https://pypi.org/project/pn532pi/