This is a go library and demo command line application for interfacing with simple low-frequency 125KHz RFID tag read/writer devices. It works with the same devices as rfid_app project.
These devices are detected as Prolific PL2303 USB-serial controllers.
All device comminucation logic is moved to a separate golang package rfid
.
This library can be used to create custom applications supporting this
particular RFID read/writer device.
Read a single card/tag, application will wait until tag is detected:
$ ./rfid-app
00000013ec
Reading multiple tags in a loop:
$ ./rfid-app --mode read-loop
00000013ec
00000013ed
Checking device model info:
$ ./rfid-app --mode info
ID card reader & writer
- Damien Bobillot for device protodol dumps.
- Benjamin Larsson for rfid_app.