https://github.com/exocet22/tinyrc522
A tiny Arduino/Raspberry Pi library for managing Mifare Classic 1K S50 tags on RC522 module running on ESP8266.
https://github.com/exocet22/tinyrc522
arduino mfrc522 mifare-classic mifare-classic-1k mifare-s50 platformio raspberry-pi rc522 rfid-rc522
Last synced: 3 months ago
JSON representation
A tiny Arduino/Raspberry Pi library for managing Mifare Classic 1K S50 tags on RC522 module running on ESP8266.
- Host: GitHub
- URL: https://github.com/exocet22/tinyrc522
- Owner: Exocet22
- License: mit
- Created: 2025-02-05T15:04:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-05T16:40:31.000Z (over 1 year ago)
- Last Synced: 2025-04-09T14:43:39.582Z (about 1 year ago)
- Topics: arduino, mfrc522, mifare-classic, mifare-classic-1k, mifare-s50, platformio, raspberry-pi, rc522, rfid-rc522
- Language: C++
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
Awesome Lists containing this project
README
# TinyRC522
A tiny [Arduino](https://arduino.cc/)/[Raspberry Pi](https://www.raspberrypi.com) library for managing Mifare Classic 1K S50 tags on [RC522](https://www.nxp.com/docs/en/data-sheet/MFRC522.pdf) module.
The tag's data is managed as a single continuous data block for a simple use.
## Installation
### Using the Arduino IDE Library Manager
1. Choose `Sketch` -> `Include Library` -> `Manage Libraries...`
2. Type `TinyRC522` into the search box.
3. Click the row to select the library.
4. Click the `Install` button to install the library.
### Using PlatformIO Library Manager
1. Choose `PIO Home` -> `Libraries` -> `Registry`
2. Type `TinyRC522` into the search box.
3. Click the row to select the library.
4. Click the `Install` button to install the library.
### Using Git
```sh
cd ~/Documents/Arduino/libraries/
git clone https://github.com/exocet22/TinyRC522 TinyRC522
```
## Examples
See [examples](examples) folder.
## License
This libary is [licensed](LICENSE) under the [MIT Licence](https://en.wikipedia.org/wiki/MIT_License).