Hi,
I am wondering if there is a way to get the Serial.print function to print custom name rather than the hexadecimal of the RFID tag.
Currently,
for (byte x = 0 ; x < tagEPCBytes ; x++) {
if (nano.msg[31 + x] < 0x10) Serial.print(F("0"));
Serial.print(nano.msg[31 + x], HEX);
Serial.print(F(" "));
}
I tried to do a if function to just try to match the output but i am getting nowhere. Able to assist on this?