mirror of
https://github.com/eclipse/upm.git
synced 2025-03-24 01:10:22 +03:00
87 lines
2.0 KiB
JavaScript
87 lines
2.0 KiB
JavaScript
/*
|
|
* Author: Zion Orent <zorent@ics.com>
|
|
* Copyright (c) 2015 Intel Corporation.
|
|
*
|
|
* This program and the accompanying materials are made available under the
|
|
* terms of the The MIT License which is available at
|
|
* https://opensource.org/licenses/MIT.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
// Load PN532 module
|
|
var pn532 = require('jsupm_pn532');
|
|
|
|
// Instantiate an PN532 on I2C bus 0 (default) using gpio 3 for the
|
|
// IRQ, and gpio 2 for the reset pin.
|
|
var myNFCObj = new pn532.PN532(3, 2);
|
|
|
|
if (!myNFCObj.init())
|
|
console.log("init() failed");
|
|
|
|
var vers = myNFCObj.getFirmwareVersion();
|
|
|
|
if (vers)
|
|
console.log("Got firmware version: " + toHex(vers, 8));
|
|
else
|
|
{
|
|
console.log("Could not identify PN532");
|
|
exit();
|
|
}
|
|
|
|
// Now scan and identify any cards that come in range (1 for now)
|
|
|
|
// Retry forever
|
|
myNFCObj.setPassiveActivationRetries(0xff);
|
|
|
|
myNFCObj.SAMConfig();
|
|
|
|
var uidSize = new pn532.uint8Array(0);
|
|
var uid = new pn532.uint8Array(7);
|
|
|
|
var myInterval = setInterval(function()
|
|
{
|
|
for (var x = 0; x < 7; x++)
|
|
uid.setitem(x, 0);
|
|
if (myNFCObj.readPassiveTargetID(pn532.PN532.BAUD_MIFARE_ISO14443A,
|
|
uid, uidSize, 2000))
|
|
{
|
|
// found a card
|
|
console.log("Found a card: UID len " + uidSize.getitem(0));
|
|
process.stdout.write("UID: ");
|
|
for (var i = 0; i < uidSize.getitem(0); i++)
|
|
{
|
|
var byteVal = uid.getitem(i);
|
|
process.stdout.write(toHex(byteVal, 2) + " ");
|
|
}
|
|
process.stdout.write("\n");
|
|
console.log("SAK: " + toHex(myNFCObj.getSAK(), 2));
|
|
console.log("ATQA: " + toHex(myNFCObj.getATQA(), 4));
|
|
console.log(" ");
|
|
}
|
|
else
|
|
console.log("Waiting for a card...");
|
|
}, 1000);
|
|
|
|
function toHex(d, pad)
|
|
{
|
|
// pad should be between 1 and 8
|
|
return ("00000000"+(Number(d).toString(16))).slice(-pad)
|
|
}
|
|
|
|
function exit()
|
|
{
|
|
clearInterval(myInterval);
|
|
myNFCObj = null;
|
|
pn532.cleanUp();
|
|
pn532 = null;
|
|
console.log("Exiting");
|
|
process.exit(0);
|
|
}
|
|
|
|
// When exiting: clear interval, and print message
|
|
process.on('SIGINT', function()
|
|
{
|
|
exit();
|
|
});
|