extend sensor vbatt and hall

This commit is contained in:
2021-11-29 16:51:17 +01:00
parent dc285288f0
commit 8c6cbbf247
8 changed files with 83220 additions and 17 deletions

View File

@@ -19,12 +19,12 @@ void handleRfid()
uint32_t timeNow = millis();
if (lastRFID - timeNow > RFIDINTERVAL)
{
if (nfc.tagPresent())
{
NfcTag tag = nfc.read();
String uid = tag.getUidString();
Serial.println(uid);
//String uid = tag.getUidString();
//Serial.println(uid);
lastRFID = timeNow;
}
}
}