node-nfcpy-id
Read the card ID (Mifare: UID, FeliCa: IDm) with nfcpy (a Python module).
Requirement
Node version
Python version
Operation System
Install
npm install node-nfcpy-id
Settings for Raspbian with SONY Pasori RC-S380
sudo apt-get install python-usb python-pip -y
sudo pip install -U nfcpy
cat << EOF | sudo tee /etc/udev/rules.d/nfcdev.rules
SUBSYSTEM=="usb", ACTION=="add", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="06c3", GROUP="plugdev"
EOF
Please restart once.
sudo reboot
Examples
'use strict';
const NfcpyId = require('node-nfcpy-id');
const nfc = new NfcpyId().start();
nfc.on('touchstart', (card) => {
console.log('Card ID: ' + card.id);
console.log('Card Type: ' + card.type);
});
nfc.on('touchend', () => {
console.log('Card was away.');
});
nfc.on('error', (err) => {
console.error('\u001b[31m');
console.error(err);
console.error('\u001b[0m');
});
To stop this script, press Ctrl+C. By this, Python process will be killed at the same time.
To use this script with other than SONY Pasori RC-S380, it may be necessary to modify reader.py
and add options to the parameter of constructor.
const NfcpyId = require('node-nfcpy-id');
const nfc = new NfcpyId({scriptPath: __dirname, scriptFile: 'new-reader.py'}).start();