RFID card reader USB #28340
gama
Posts: 3
I currently have an RFID 28340 card. I am looking for how to program an arduino one. I have the USB host shield but I don't know how to program the arduino to read the tags. Maybe they have some basic program to start?
Thank you
Thank you
Comments
1 - Set the USB shield to 8 data bits, no parity, 1 stop bit, and least significant bit first (8N1) at 2400 bps.
2 - Send the data/command to enable the RFID card reader (DTR low)
3 – When the RFID Card Reader is enabled and a valid RFID transponder tag is placed within range of the activated reader, the tag’s unique ID will be transmitted as a 12-byte printable ASCII string serially to the USB shield.
3 - Send the data/command to disable the RFID card reader (DTR high).
Sorry, I cannot help with the actual code since I do not have any of the hardware you have. I have attached the only arduino sample code I could find for this. Hope it helps.
Thank you.
You're welcome. Do keep in mind that the code was written for RFID 28140, the serial data version. It will require some change so it can set DTR to high and low for the RFID 28340 USB version. Perhaps someone on the forum can provide that information if you request it.