Hi,
I’m having trouble to read 125kHz RFID tags using a RDM6300 RFID reader and an Arduino Duemilanove.
I bought this reader and these RFID tags.
I wired everything as described in several data-sheets and tutorials (e.g. http://tronixstuff.com/2013/11/19/arduino-tutorials-chapter-15-rfid/) - see below for wiring picture.
I used a really simple code to just get anything from the RFID reader but I receive nothing…
I move the tag above the coil in every kind you can imagine, but there is nothing in my serial monitor.
Different RDM6300 modules/coils were tested and also another Arduino. Same result.
Do you have an idea?
#include <SoftwareSerial.h>
SoftwareSerial RFID(2, 3); // RX and TX
int i;
void setup()
{
RFID.begin(9600); // start serial to RFID reader
Serial.begin(9600); // start serial to PC
}
void loop()
{
if (RFID.available() > 0)
{
i = RFID.read();
Serial.print(i, DEC);
Serial.print(" ");
}
}