Hi I have a project using UHF RFID Reader to read the card ID and send it to Arduino Mega via RS232 to TTL.
I have tested the simple program using:-
#include <SoftwareSerial.h>
SoftwareSerial mySerial (2,3);
unsigned char incomingByte;
void setup ()
{
Serial.begin (57600);
mySerial.begin (57600);
Serial.println ("Start RFID read!\n");
}
void loop ()
{
//delay (2);
while(mySerial.available () > 0)
{
incomingByte=mySerial.read ();
Serial.print (incomingByte);
Serial.print ('--');
}
Serial.println ('.');
delay (1000);
}
But i couldn't get any respond from the reader. As i check all of the hardware are working well. May i know is there any setting i need to change in order for UHF RFID can be work with arduino? Attached is the SDK interface.