We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When working with version 1.4.10 reading the VersionReg returns 0x0 instead of the expected 0x92, Reverting back to 1.4.9 fixes the issue
0x0 printed
0x92 print
void setup() { SPI.begin(); // Init SPI bus rfid.PCD_Init(); // Init MFRC522 /* read and printout the MFRC522 version (valid values 0x91 & 0x92)*/ Serial.print(F("RFID Reader version: 0x")); byte readReg = rfid.PCD_ReadRegister(rfid.VersionReg); Serial.println(readReg, HEX); }
The text was updated successfully, but these errors were encountered:
Function change was #569 Maybe teensy handles yield() different than Arduino & ESP.
yield()
Sorry, something went wrong.
@bigoren Have you tried to fix it or have a solution?
No branches or pull requests
Step 1: Describe your environment
Step 2: Describe the problem
When working with version 1.4.10 reading the VersionReg returns 0x0 instead of the expected 0x92,
Reverting back to 1.4.9 fixes the issue
Steps to reproduce:
Observed Results:
0x0 printed
Expected Results:
0x92 print
Relevant Code:
The text was updated successfully, but these errors were encountered: