A library to integrate the MFRC522 RFID readers with the Jetson family
Project description
RFID library for Jetson Family
This is a simple python library that provides a way to communicate jetson devices with MFRC522 modules
Installation
The easier way to install is through pip
pip install Jetson-MFRC522
also you can install it manually by clone the repo and run pip install command
Example
This is a simple example that read id and text in RFID card, tested in Jetson Nano.
from time import sleep
import sys
from Jetson_MFRC522 import SimpleMFRC522
reader = SimpleMFRC522()
try:
while True:
print("Hold a tag near the reader")
id, text = reader.read()
print("ID: %s\nText: %s" % (id,text))
sleep(5)
except KeyboardInterrupt:
GPIO.cleanup()
raise
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Jetson_MFRC522-1.0.0.tar.gz
(7.2 kB
view details)
File details
Details for the file Jetson_MFRC522-1.0.0.tar.gz.
File metadata
- Download URL: Jetson_MFRC522-1.0.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9775a70e1f1e02746724274bd88f4a86b7ad69d5c34d095552603bb3a5c5d890
|
|
| MD5 |
98708db57e1c832cb327f595082b4f8a
|
|
| BLAKE2b-256 |
1951db07ff9429e9c31c473ec201b97630f93522a15d6977d5130aef33b9c168
|