Hi,
I’m unable to get any serial data from this module despite making a number of attempts using an Arduino Uno Wifi.
Here is one code example:
int serialdata;
void setup()
{
Serial.begin(9600);
Serial.println("ready");
}
void loop()
{
if (Serial.available() > 0) {
serialdata = Serial.read();
Serial.println(serialdata);
}
}
Pin connections:
RFID antenna connected with red connector on P2-Pin2
RFID module P1-Pin1(tx) connected to Arduino Digital 0(rx)
RFID module P1-Pin4(gnd) connected to Arduino Power (gnd)
RFID module P1-Pin5(+5v) connected to Arduino Power (5v)
Please help? or is this a faulty module?









