Rc522 Proteus Library Updated
The RC522 is a cheap, ubiquitous RFID/NFC reader operating at 13.56 MHz. It interfaces with microcontrollers (Arduino, PIC, 8051, STM32) via SPI. Before the updated library, simulating this meant either:
// New feature: Check for updated simulated version byte version = mfrc522.PCD_ReadRegister(mfrc522.VersionReg); Serial.print("Chip Version: 0x"); Serial.println(version, HEX); // Expected in simulation: 0x92 or 0x91 (not 0x12 from old buggy lib) rc522 proteus library updated