Hi everyone,
I’m currently using the simultaneous RFID Reader for my bachelor thesis. I´d like to read the user data constant. Therefore, I cut simply the head of the example code #4 off (Example below).
It works but after a few minutes the reader stops reading and is not reacting anymore. I also tested it with a 5V external power supply but there were no changings.
Thanks for your help
Greetings from Germany
Sevi
void read() {
byte responseType;
char myData[3];
byte myDataLength = sizeof(myData);
responseType = nano.readUserData(myData, myDataLength);
if (responseType == RESPONSE_SUCCESS)
{
//Print User Data
Serial.print(F(“- number [”));
Serial.print(myData);
Serial.println(F(“]”));
}
}