An open API service indexing awesome lists of open source software.

https://github.com/samt/rfidjs

Reads an RFID device from stdin and emits an event with the validated ID
https://github.com/samt/rfidjs

Last synced: 8 months ago
JSON representation

Reads an RFID device from stdin and emits an event with the validated ID

Awesome Lists containing this project

README

          

# RFID.js

Reads keyboard input (from an RFID device) and emits an event containing the
validated id code.

## Applications

This is pimarily useful for kiosks running some sort of web application

## Usage

Just register a listener for the event

```
document.addEventListener("RFIDCardScan",function (e) {
console.log('Card Scanned: ' + e.idcode);
},false);
```

## License

[The MIT License](http://opensource.org/licenses/MIT)