mirror of
https://github.com/home-assistant/core.git
synced 2026-08-28 00:55:44 +01:00
* Use literal string interpolation in integrations A (f-strings) * Black
14 lines
347 B
Python
14 lines
347 B
Python
"""Constants used for arcam."""
|
|
DOMAIN = "arcam_fmj"
|
|
|
|
SIGNAL_CLIENT_STARTED = "arcam.client_started"
|
|
SIGNAL_CLIENT_STOPPED = "arcam.client_stopped"
|
|
SIGNAL_CLIENT_DATA = "arcam.client_data"
|
|
|
|
DEFAULT_PORT = 50000
|
|
DEFAULT_NAME = "Arcam FMJ"
|
|
DEFAULT_SCAN_INTERVAL = 5
|
|
|
|
DOMAIN_DATA_ENTRIES = f"{DOMAIN}.entries"
|
|
DOMAIN_DATA_CONFIG = f"{DOMAIN}.config"
|