Hi Arduino family.
I've aquired a chip known as the SSRFID V1.0, RFID read/write board. It was bought from ebay, simular to this http://www.ebay.co.uk/itm/Serial-UART-13-56MHZ-RFID-Reader-Writer-Module-with-Cards-Arduino-Compatible-/130649910994?pt=BI_Electrical_Equipment_Tools&hash=item1e6b576ed2
I've followed through with the manufacters documentation, and don't seem to be able to get the thing to work. I can't seem to be finding an issue, and was hoping you lovely people could help me out? Here is the code I'm using:
#include <SoftwareSerial.h>
SoftwareSerial mySerial(2, 3); //pin2 Rx, pin3 Tx
void setup()
{
Serial.begin(9600);
Serial.println("Serial number will be displayed here if a card is detected by the module:\n");
// set the data rate for the SoftwareSerial port
mySerial.begin(9600);
mySerial.write(0x02); //Send the command to RFID, please refer to RFID manual
}
void loop() // run over and over
{
if (mySerial.available())
Serial.print(mySerial.read(),HEX); //Display the Serial Number in HEX
if (Serial.available())
mySerial.write(Serial.read());
}
I've connected the device up as shown in the test documentation (below). The module is showing the expected LED's on boot, and when the RFID card is passsed near, yet there is nothing being shown in the serial after the line "Serial number will be displayed here if a card is detected by the module:". Has anyone got any thoughts on this?
The manual for the device is here: [www.elechouse.com/elechouse/images/product/13.56MHZ_RFID_Module/RFID with Arduino.pdf](http://www.elechouse.com/elechouse/images/product/13.56MHZ_RFID_Module/RFID with Arduino.pdf)
The test documentation for the device is here: http://www.elechouse.com/elechouse/images/product/13.56MHZ_RFID_Module/RFID%20with%20Arduino.pdf