micropython-mfrc522 #4
Reference in New Issue
Block a user
Delete Branch "micropython-mfrc522"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Await-able python-only implementation with selectable poll rate.
@@ -0,0 +1,33 @@#!/usr/bin/bashPlease don't do it like this, include the module in the manifest.py in software/boards/RPI_PICO_W/ to include it in our micropython environment.
@@ -0,0 +4,4 @@def uid_to_string(uid: list):uid_string = "0x"for i in uid:Maybe something like
?
@@ -0,0 +11,4 @@async def get_tag_uid(reader: MFRC522, poll_interval_ms: int = 50) -> list:while True:reader.init()TODO: We should check that the maximal latency introduced by these "blocking" functions (reader.*) in async context is not too high.
18742d0c13to7213230cadc68942fe24tof213a51e36