Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
This adaptor is primarily made for the Univelop 500 RFID reader/writer made by Texas Instruments.
This reader supports the following tags:
Uses event emitters for passing tag and content, and can be controlled by nodejs, or externally via TCP Socket or Websocket.
var rfid = require('rfidgeek');
rfid.init() takes optional parameters (defaults in parantheses):
tcpsocket: (false) // {port: <port>, host: <host>} | true, defaults to localhost:4444
websocket: (false) // {port: <port>, host: <host>} | true, defaults to localhost:4444
debug: ('none') // show debug information, possible values: 'none', 'error', 'debug'
portname: ('/dev/ttyUSB0') // device path to reader
tagtype: ('ISO15693') // type rfid ['ISO15693', 'ISO14443A', 'ISO14443B', 'TAGIT']
scaninterval: (1000) // interval between each scan, tested down to 100ms
readerconfig: ('./univelop_500b.json') // path to json config file for rfid commands
bytes_to_read: ('08') // block length to read from ISO15693
rfid.init({
tcpsocket: {
port: 8888,
host: 'localhost'
},
tagtype: "ISO14443A"
});
### TCP Socket or Websocket control
### nodejs control
Start scan loop;
rfid.startScan(function(err) {console.log(err) });
Stop scan loop
rfid.stopScan();
Deactivate alarm
rfid.deactivateAFI(function(err) {console.log(err) });
Activate alarm
rfid.activateAFI(function(err) {console.log(err) });
Write ISO15693 tag:
rfid.writeISO15693("<tag id>", "<data>", function(err) { console.log(err) });
### Websocket in browser example
var ws = new WebSocket("ws://localhost:4444"); ws.onopen = function(evt) { console.log("connected!"); ws.send(JSON.stringify({cmd:"SCAN-ON"})); }
ws.onmessage = function(evt) { console.log(evt); };
For more info check the `rfid.js` file and the tests
Note, there is work on the reader in Python:
https://github.com/scriptotek/pyrfidgeek
and in Ruby:
https://github.com/digibib/rfidgeek
License is MIT
FAQs
serial connector to univelop RFID reader
The npm package rfidgeek receives a total of 0 weekly downloads. As such, rfidgeek popularity was classified as not popular.
We found that rfidgeek demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.