I have this NFC module. When i read ONE card at a moment everything works fine, but I need to read more that one card at a moment.
One card laying on a module - module reads it ok, when I move another card over the module, I get a mix of both card's numbers.
Is there any way to read both card at one moment correctly?
I read card like this. As a bord I use NodeMCU ESP8266 ESP-12E
SoftwareSerial rfid(RFID_RX, RFID_TX);
..
void loop()
{
rfid.listen();
delay(500);
while (rfid.available() > 0) {
Serial.println("Closest card number: " + rfid.readString());
}
}