我尝试使用这两个库来检测 NFC 标签(https://github.com/mitchellparsons/rc522-rfid-promise)并控制 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")
})
谢谢!