M6E Nano to customized output

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?

I have created an example21 that you can use as a starting point. It is the same as example1, but now with name lookup.

There are other examples and extensions that I have created based on the original library from Sparkfun. You can find the latest version (including example21) on https://github.com/paulvha/ThingMagic/t … ib_special

Example21_Constant_Read_Name.zip (3.54 KB)