0
if ( mfrc522.PICC_IsNewCardPresent()){
 if ( mfrc522.PICC_ReadCardSerial()){
       Serial.print("Tag UID:");
       for (byte i = 0; i < mfrc522.uid.size; i++) {
              Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ");
              Serial.print(mfrc522.uid.uidByte[i], HEX);
        }

Above is my code for RFID tag reading i wanna to convert the UID of tag into a single integer value

Safdar Pathan
  • 11
  • 1
  • 7

0 Answers0