Hi,
My ID20LA is producing no serial output. I have no idea what I'm doing wrong.
Code:
void setup()
{
Serial.begin(9600); // connect to the serial port
}
void loop ()
{
if(Serial.available() > 0)
{
Serial.print(Serial.read());
}
}
Wiring:
RFID Breakout to Arduino
VCC and RES to 5V
FORM and GND to GND
D0 to RX 0
I also have a few other digital pins attached to an LCD. The arduino is powered by a DC 10V 500mA, centre pin-positive adapter.