带 RFID 的 Arduino C++ 字符串变量
Arduino C++ String variables with RFID
我正在尝试扫描 RFID 标签以将其添加到名为 RFID1 的变量字符串中。
但是,当它在另一个无效函数中的 do while 循环中扫描 RFID 卡时,它一直说访问被拒绝,就好像它仍在主循环中一样。
我不确定为什么会这样..
do{ // DO WHILE STATEMENT FOR ADDING RFID
if
// Look for new cards
if ( ! mfrc522.PICC_IsNewCardPresent())
{
return;
}
// Select one of the cards
if ( ! mfrc522.PICC_ReadCardSerial())
{
return;
}
//Show UID on serial monitor
Serial.print("UID tag :");
String content= "";
byte letter;
for (byte i = 0; i < mfrc522.uid.size; i++)
{
Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ");
Serial.print(mfrc522.uid.uidByte[i], HEX);
content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "));
content.concat(String(mfrc522.uid.uidByte[i], HEX));
}
Serial.println();
Serial.print("Message : ");
content.toUpperCase();
RFID1 == content.substring(1); // RFID USER 1 = RFID TAG
delay(3000); // WAIT 3 SECONDS
user1AddLoop + 1; // BREAK OUT OF LOOP
} // END OF DO WHILE STATEMENT FOR ADDING RFID
while(user1AddLoop == 0 );
^^ 尝试将 RFID 添加到变量的函数。 ^^
// ---- RFID CODE ---- //
// Look for new cards
if ( ! mfrc522.PICC_IsNewCardPresent())
{
return;
}
// Select one of the cards
if ( ! mfrc522.PICC_ReadCardSerial())
{
return;
}
//Show UID on serial monitor
Serial.print("UID tag :");
String content= "";
byte letter;
for (byte i = 0; i < mfrc522.uid.size; i++)
{
Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ");
Serial.print(mfrc522.uid.uidByte[i], HEX);
content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "));
content.concat(String(mfrc522.uid.uidByte[i], HEX));
}
Serial.println();
Serial.print("Message : SCAN YOUR RFID TAG");
content.toUpperCase();
if (content.substring(1) == RFID1 || content.substring(1) == RFID2 || content.substring(1) == RFID3) //change here the UID of the card/cards that you want to give access
{
rfidOpen();
}
else {
rfidDeny();
}
^^ 主循环搜索RFID开门代码^^
我知道他们使用相同的代码来搜索 RFID,但是,我不明白为什么它一直拒绝我访问,就好像它是在 void loop() 中而不是在它自己的函数中,名为 rfidMenu( ) 从代码中看到的 rfidOpen() void 调用。
这是我的代码:
void readCard()
{
cardContent = "";
if ( ! mfrc522.PICC_IsNewCardPresent() )
return;
if ( ! mfrc522.PICC_ReadCardSerial() )
return;
for (byte i = 0; i < mfrc522.uid.size; i++)
{
cardContent.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "));
cardContent.concat(String(mfrc522.uid.uidByte[i], HEX));
}
cardContent.toUpperCase();
}
我正在尝试扫描 RFID 标签以将其添加到名为 RFID1 的变量字符串中。 但是,当它在另一个无效函数中的 do while 循环中扫描 RFID 卡时,它一直说访问被拒绝,就好像它仍在主循环中一样。
我不确定为什么会这样..
do{ // DO WHILE STATEMENT FOR ADDING RFID
if
// Look for new cards
if ( ! mfrc522.PICC_IsNewCardPresent())
{
return;
}
// Select one of the cards
if ( ! mfrc522.PICC_ReadCardSerial())
{
return;
}
//Show UID on serial monitor
Serial.print("UID tag :");
String content= "";
byte letter;
for (byte i = 0; i < mfrc522.uid.size; i++)
{
Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ");
Serial.print(mfrc522.uid.uidByte[i], HEX);
content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "));
content.concat(String(mfrc522.uid.uidByte[i], HEX));
}
Serial.println();
Serial.print("Message : ");
content.toUpperCase();
RFID1 == content.substring(1); // RFID USER 1 = RFID TAG
delay(3000); // WAIT 3 SECONDS
user1AddLoop + 1; // BREAK OUT OF LOOP
} // END OF DO WHILE STATEMENT FOR ADDING RFID
while(user1AddLoop == 0 );
^^ 尝试将 RFID 添加到变量的函数。 ^^
// ---- RFID CODE ---- //
// Look for new cards
if ( ! mfrc522.PICC_IsNewCardPresent())
{
return;
}
// Select one of the cards
if ( ! mfrc522.PICC_ReadCardSerial())
{
return;
}
//Show UID on serial monitor
Serial.print("UID tag :");
String content= "";
byte letter;
for (byte i = 0; i < mfrc522.uid.size; i++)
{
Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ");
Serial.print(mfrc522.uid.uidByte[i], HEX);
content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "));
content.concat(String(mfrc522.uid.uidByte[i], HEX));
}
Serial.println();
Serial.print("Message : SCAN YOUR RFID TAG");
content.toUpperCase();
if (content.substring(1) == RFID1 || content.substring(1) == RFID2 || content.substring(1) == RFID3) //change here the UID of the card/cards that you want to give access
{
rfidOpen();
}
else {
rfidDeny();
}
^^ 主循环搜索RFID开门代码^^
我知道他们使用相同的代码来搜索 RFID,但是,我不明白为什么它一直拒绝我访问,就好像它是在 void loop() 中而不是在它自己的函数中,名为 rfidMenu( ) 从代码中看到的 rfidOpen() void 调用。
这是我的代码:
void readCard()
{
cardContent = "";
if ( ! mfrc522.PICC_IsNewCardPresent() )
return;
if ( ! mfrc522.PICC_ReadCardSerial() )
return;
for (byte i = 0; i < mfrc522.uid.size; i++)
{
cardContent.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "));
cardContent.concat(String(mfrc522.uid.uidByte[i], HEX));
}
cardContent.toUpperCase();
}