An open API service indexing awesome lists of open source software.

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.

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).