Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Tag integration."""
2 
3 import logging
4 
5 DEVICE_ID = "device_id"
6 DOMAIN = "tag"
7 EVENT_TAG_SCANNED = "tag_scanned"
8 TAG_ID = "tag_id"
9 DEFAULT_NAME = "Tag"
10 LOGGER = logging.getLogger(__package__)