* Add support for LIVISI climate devices * Remove the reauthentication logic * Add support for LIVISI climate devices * Remove the reauthentication support * Code review follow-up * Update homeassistant/components/livisi/manifest.json Co-authored-by: epenet <6771947+epenet@users.noreply.github.com> * Update homeassistant/components/livisi/manifest.json Co-authored-by: epenet <6771947+epenet@users.noreply.github.com> * Code review follow-up * Code Review Follow-up * Code Review Follow-up * Code review follow-up * Code review follow-up * Code review follow-up * Code review follow-up --------- Co-authored-by: epenet <6771947+epenet@users.noreply.github.com>
21 lines
553 B
Python
21 lines
553 B
Python
"""Constants for the Livisi Smart Home integration."""
|
|
import logging
|
|
from typing import Final
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
DOMAIN = "livisi"
|
|
|
|
CONF_HOST = "host"
|
|
CONF_PASSWORD: Final = "password"
|
|
AVATAR = "Avatar"
|
|
AVATAR_PORT: Final = 9090
|
|
CLASSIC_PORT: Final = 8080
|
|
DEVICE_POLLING_DELAY: Final = 60
|
|
LIVISI_STATE_CHANGE: Final = "livisi_state_change"
|
|
LIVISI_REACHABILITY_CHANGE: Final = "livisi_reachability_change"
|
|
|
|
PSS_DEVICE_TYPE: Final = "PSS"
|
|
VRCC_DEVICE_TYPE: Final = "VRCC"
|
|
|
|
MAX_TEMPERATURE: Final = 30.0
|
|
MIN_TEMPERATURE: Final = 6.0
|