Nice Work

This commit is contained in:
2026-01-13 19:44:02 +00:00
parent b503b372b4
commit 0718377b27
144 changed files with 15587 additions and 2132 deletions
+18
View File
@@ -0,0 +1,18 @@
"""Mock NFC reader for Phase 1a."""
from __future__ import annotations
from hardware.base_nfc import BaseNFC
class MockNFC(BaseNFC):
def __init__(self) -> None:
self._next_uid: str | None = None
def set_next_uid(self, uid: str | None) -> None:
self._next_uid = uid
def read_tag(self) -> str | None:
uid = self._next_uid
self._next_uid = None
return uid