Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rolandvs/micropython-nfc
Using NFC with micropython
https://github.com/rolandvs/micropython-nfc
Last synced: 3 months ago
JSON representation
Using NFC with micropython
- Host: GitHub
- URL: https://github.com/rolandvs/micropython-nfc
- Owner: rolandvs
- Created: 2016-08-02T23:07:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-03T20:05:55.000Z (over 8 years ago)
- Last Synced: 2024-04-29T11:33:27.872Z (6 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 11
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-micropython - micropython-nfc - Using NFC with MicroPython. (Libraries / Communications)
README
# micropython-NFC
This repository contains some experiments with NFC readers.
First experiment was to have the MFRC522 working on the PYB board. Next thing is to move it over to the ESP8266.
# MFRC522
One of the more mature readers is the NXP MFRC522 Reader. This is a 3.3V reader with `UART`, `I2C` and `SPI` interfaces. The latest silicon v2.0 is in the `MFRC52202HN1` chip.The reader supports:
- MIFARE Mini,
- MIFARE 1K,
- MIFARE 4K,
- MIFARE Ultralight,
- MIFARE DESFire EV1 and
- MIFARE Plus RF identification protocols.# mfrc522.py
The code uses the `PYB` module (need to change to `machine`). Using `execfile('mfrc522.py')` to start the reading, `import MFRC522` to add the module to your program.