Lines Matching refs:PN532
28 // Load PN532 module
29 var pn532 = require('jsupm_pn532');
31 // Instantiate an PN532 on I2C bus 0 (default) using gpio 3 for the
33 var myNFCObj = new pn532.PN532(3, 2);
44 console.log("Could not identify PN532");
55 var uidSize = new pn532.uint8Array(0);
56 var uid = new pn532.uint8Array(7);
62 if (myNFCObj.readPassiveTargetID(pn532.PN532.BAUD_MIFARE_ISO14443A,
92 pn532.cleanUp();
93 pn532 = null;