├── .gitignore ├── LICENSE ├── README.md ├── deploy_esp.sh ├── deploy_wipy.sh ├── examples ├── read.py └── write.py └── mfrc522.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wendlers/micropython-mfrc522/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wendlers/micropython-mfrc522/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wendlers/micropython-mfrc522/HEAD/README.md -------------------------------------------------------------------------------- /deploy_esp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wendlers/micropython-mfrc522/HEAD/deploy_esp.sh -------------------------------------------------------------------------------- /deploy_wipy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wendlers/micropython-mfrc522/HEAD/deploy_wipy.sh -------------------------------------------------------------------------------- /examples/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wendlers/micropython-mfrc522/HEAD/examples/read.py -------------------------------------------------------------------------------- /examples/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wendlers/micropython-mfrc522/HEAD/examples/write.py -------------------------------------------------------------------------------- /mfrc522.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wendlers/micropython-mfrc522/HEAD/mfrc522.py --------------------------------------------------------------------------------