mirror of
https://github.com/home-assistant/core.git
synced 2026-07-14 18:14:35 +01:00
da68bf36a4
Co-authored-by: Claude <noreply@anthropic.com>
17 lines
433 B
Python
17 lines
433 B
Python
"""Shared constants for the Vistapool integration."""
|
|
|
|
DOMAIN = "vistapool"
|
|
BRAND = "Sugar Valley"
|
|
MODEL = "Vistapool"
|
|
|
|
PATH_PREFIX = "main."
|
|
PATH_HASCD = f"{PATH_PREFIX}hasCD"
|
|
PATH_HASCL = f"{PATH_PREFIX}hasCL"
|
|
PATH_HASIO = f"{PATH_PREFIX}hasIO"
|
|
PATH_HASPH = f"{PATH_PREFIX}hasPH"
|
|
PATH_HASRX = f"{PATH_PREFIX}hasRX"
|
|
PATH_HASUV = f"{PATH_PREFIX}hasUV"
|
|
PATH_HASHIDRO = f"{PATH_PREFIX}hasHidro"
|
|
|
|
SIGNAL_NEW_POOL = f"{DOMAIN}_new_pool"
|