我尝试使用这两个库来检测NFC标记(https://github.com/mitchellparsons/rc522-rfid-promise)并控制Raspberry Pi上的MPD服务器(https://github.com/andrewrk/mpd.js)。我在Raspbian Jessie(2017-01-11)上使用Node v6.9.5。
执行以下代码时,仅执行MPD侦听器。有没有我做错了或误解了Nodejs的概念?
var mpd = require('mpd')
var rc522 = require("rc522-rfid-promise")
var client = mpd.connect({
port: 6600,
host: 'localhost',
})
rc522.startListening()
.then(function(rfidTag){
console.log('Got RFID tag')
})
client.on('ready', function() {
console.log("MPD ready")
})
谢谢!
答案 0 :(得分:1)
尝试收听错误事件:
client.on('error', function (err) {
console.log('Error:', err)
});