Component: RFID (MFRC522) (Wireless)
Author | Ben Rowland and STibor |
Version | 3.0 |
Category | Wireless |
Contents
RFID (MFRC522) component
Functions designed to work with the MFRC522 contactless reader IC. The MFRC522 supports all variants of the MIFARE Mini, MIFARE 1K, MIFARE 4K, MIFARE Ultralight, MIFARE DESFire EV1 and MIFARE Plus RF identification protocols.
Component Source Code
Please click here to download the component source project: FC_Comp_Source_MFRC522.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_MFRC522.fcfx
Detailed description
No detailed description exists yet for this component
Examples
Here is a basic example program that reads the UID from a Mifare RFID tag and displays on an LCD. If the UID matches the UID stored in memory then a solenoid will fire allowing a door to be unlocked etc.
Here is a basic example program to read and modify data stored on a Mifare RFID tag.
Macro reference
AntennaOff
AntennaOff | |
Switches off the RFID antenna to save power. The antenna must be switched on again before communicating with an RFID tag. | |
- VOID | Return |
AntennaOn
AntennaOn | |
Switches on the RFID antenna. Called as part of the Initialise macro. | |
- VOID | Return |
Authenticate
CompareUID
CompareUID | |
Compares the UID from the ReadCardSerial macro with 4 byte UID. Returns 0 if the addresses match. | |
- BYTE | Add0 |
- BYTE | Add1 |
- BYTE | Add2 |
- BYTE | Add3 |
- BYTE | Return |
GetType
GetType | |
Translates the SAK (Select Acknowledge) to a PICC type | |
- BYTE | sak |
The SAK byte returned from PICC_Select | |
- BYTE | Return |
HaltA
HaltA | |
Instructs a PICC in state ACTIVE(*) to go to state HALT | |
- BYTE | Return |
Initialise
Initialise | |
Initialises the RFID module ready for interaction with RFID tags. | |
- VOID | Return |
IsNewCardPresent
IsNewCardPresent | |
Is there a card present for us to communicate with. Returns 0 for no card and 1 for valid card present. | |
- BYTE | Return |
MifareRead
MifareRead | |
Reads from a block of data on a MIFARE type tag | |
- BYTE | BlockAddress |
- BYTE | Buffer |
- BYTE | BufferSize |
- BYTE | Return |
MifareWrite
MifareWrite | |
Writes to a block of data on a MIFARE type tag | |
- BYTE | BlockAddress |
- BYTE | Buffer |
- BYTE | BufferSize |
- BYTE | Return |
ReadCardSerial
ReadUIDByte
ReadUIDByte | |
- BYTE | Index |
0-9 = UID Data Bytes, 10 = UID Length, 11 = UID SAK | |
- BYTE | Return |
Select
Select | |
- BYTE | ValidBits |
- BYTE | Return |
StopCrypto
StopCrypto | |
Used to exit the PCD from its authenticated state. Remember to call this function after communicating with an authenticated PICC - otherwise no new communications can start. | |
- VOID | Return |