one general question concerning RFID readers...

Hi:

Using RFID in arduino is tricky because you will recieve a serial stream of 12 bits. The way I got around this was to read the bits from the RFID and store it in a string array.

Each tag does have a unique ID and u can store the bits of the serial stream as characters. So 'F' for 16 will be stored as the letter F.

-n