rfidread-mfrc522
v1.0.1
Published
An improved node.js package to read tags over the MFRC522 Reader
Downloads
1
Readme
rfidRead-MFRC522
rfidRead-MFRC522 for Node.js
##Changelog
###v1.0.1
- removed the delay between scanning the same card
Require
Install
npm install rfidRead-MFRC522
Sample
var mfrc522 = require("rfidRead-MFRC522");
var Callback = function(){
this.onStart = function(){
console.log('onStart');
};
this.onUid = function(uid){
console.log('onUid');
console.log(uid);
};
this.onExit = function(){
console.log('onExit');
};
};
mfrc522.start( new Callback() );