| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- """NFC reader wrapper with state machine for tag presence detection."""
- import logging
- import time
- from enum import Enum, auto
- logger = logging.getLogger(__name__)
- MISS_THRESHOLD = 3 # Consecutive misses before declaring tag removed
- class NFCState(Enum):
- IDLE = auto()
- TAG_PRESENT = auto()
- class NFCReader:
- def __init__(self):
- self._nfc = None
- self._state = NFCState.IDLE
- self._current_uid: str | None = None
- self._current_sak: int | None = None
- self._miss_count = 0
- self._ok = False
- try:
- from read_tag import PN5180
- self._nfc = PN5180()
- self._nfc.reset()
- self._nfc.load_rf_config(0x00, 0x80)
- time.sleep(0.010)
- self._nfc.rf_on()
- time.sleep(0.030)
- self._nfc.set_transceive_mode()
- self._ok = True
- logger.info("NFC reader initialized")
- except Exception as e:
- logger.info("NFC not available: %s", e)
- @property
- def ok(self) -> bool:
- return self._ok
- @property
- def state(self) -> NFCState:
- return self._state
- @property
- def current_uid(self) -> str | None:
- return self._current_uid
- def close(self):
- try:
- self._nfc.rf_off()
- self._nfc.close()
- except Exception:
- pass
- def poll(self) -> tuple[str, dict | None]:
- """Poll for tag. Returns (event_type, event_data).
- event_type: "none", "tag_detected", "tag_removed"
- """
- try:
- result = self._nfc.activate_type_a()
- except Exception as e:
- logger.debug("NFC poll error: %s", e)
- self._ok = False
- return "none", None
- self._ok = True
- if result is not None:
- uid_bytes, sak = result
- uid_hex = uid_bytes.hex().upper()
- self._miss_count = 0
- if self._state == NFCState.IDLE:
- self._state = NFCState.TAG_PRESENT
- self._current_uid = uid_hex
- self._current_sak = sak
- # Try reading Bambu tag data
- tray_uuid = None
- tag_type = "mifare_classic" if sak in (0x08, 0x18) else "ntag" if sak == 0x00 else "unknown"
- if sak in (0x08, 0x18):
- blocks = self._nfc.read_bambu_tag(uid_bytes)
- if blocks:
- tray_uuid = _extract_tray_uuid(blocks)
- logger.info("Tag detected: %s (SAK=0x%02X)", uid_hex, sak)
- return "tag_detected", {
- "tag_uid": uid_hex,
- "sak": sak,
- "tag_type": tag_type,
- "tray_uuid": tray_uuid,
- }
- # Tag still present — no event
- return "none", None
- # No tag found
- if self._state == NFCState.TAG_PRESENT:
- self._miss_count += 1
- if self._miss_count >= MISS_THRESHOLD:
- old_uid = self._current_uid
- self._state = NFCState.IDLE
- self._current_uid = None
- self._current_sak = None
- self._miss_count = 0
- logger.info("Tag removed: %s", old_uid)
- return "tag_removed", {"tag_uid": old_uid}
- return "none", None
- def _extract_tray_uuid(blocks: dict[int, bytes]) -> str | None:
- """Extract tray_uuid from Bambu MIFARE Classic data blocks."""
- # Block 4-5 contain the 32-char tray UUID (first 16 bytes from block 4 + 5)
- if 4 in blocks and 5 in blocks:
- raw = blocks[4] + blocks[5]
- # UUID is stored as ASCII hex in the first 16 bytes of blocks 4-5
- uuid_bytes = raw[:16]
- try:
- uuid_str = uuid_bytes.hex().upper()
- if uuid_str and uuid_str != "0" * 32:
- return uuid_str
- except Exception:
- pass
- return None
|