rename nfc reader

This commit is contained in:
2024-01-18 21:01:53 +01:00
parent 76ebc00763
commit 463e71fe10
2 changed files with 6 additions and 7 deletions

View File

@ -5,7 +5,7 @@
** NfcReader
*/
#include "NfcReader.hpp"
#include "NfcReader.h"
NfcReader::NfcReader(int i2c_adress)
{
@ -20,7 +20,6 @@ String NfcReader::ReadNfc()
this->uid.clear();
if (!this->mfrc522->PICC_IsNewCardPresent() ||
!this->mfrc522->PICC_ReadCardSerial()) {
delay(200);
return "0";
}
for (unsigned int i = 0; i < this->mfrc522->uid.size; i++) {
@ -28,8 +27,8 @@ String NfcReader::ReadNfc()
this->uid += '0';
this->uid += String(this->mfrc522->uid.uidByte[i], HEX);
} else {
this->uid += String(this->mfrc522->uid.uidByte[i], HEX);
this->uid += String(this->mfrc522->uid.uidByte[i], HEX);
}
}
return (this->uid);
}
}