Hello Everyone.
I have some trouble when i using RFID RDM6300.
I only read the TAG. this is the simple program i get from
#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(" ");
}
}
When i using arduino UNO this program running and no problem.'
But when i using arduino Mega2560 the program Cannot running.
Help me please.
Thank you