* Update plugwise async, config_flow and multi entity * Update battery percentage * Fix yamllint on services * Fix yamllint on services * Fix formatting for pyupgrade * Update homeassistant/components/plugwise/__init__.py Co-Authored-By: Robert Svensson <Kane610@users.noreply.github.com> * Add try/except on setup * Bump module version, battery version and valve position * Removing sensor, switch, water_heater for later (child) PRs * Catchup and version bump * Remove title from strings.json * Readd already reviewd await try/except * Readd already reviewed config_flow * Fix pylint * Fix per 0.109 translations * Remove unused import from merge * Update plugwise async, config_flow and multi entity * Update battery percentage * Fix yamllint on services * Fix yamllint on services * Bump module version * Bump module version, battery version and valve position * Removing sensor, switch, water_heater for later (child) PRs * Catchup and version bump * Remove title from strings.json * Fix pylint * Fix per 0.109 translations * Translations and config_flow, module version bump with required changes * Translations and config_flow, module version bump with required changes * Fix requirements * Fix requirements * Fix pylint * Fix pylint * Update homeassistant/components/plugwise/__init__.py Improvement Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/plugwise/__init__.py Improvement Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/plugwise/__init__.py Improvement Co-authored-by: J. Nick Koston <nick@koston.org> * Include configentrynotready on import * Update __init__.py * DataUpdateCoordinator and comment non-PR-platforms * Fix reqs * Rename devices variable in favor of entities * Rework updates with DataUpdateCoordinator * Peer review * Peer review second part * Cleanup comments and redundant code * Added required config_flow test * Peer review third part * Update service was replaced by DataUpdateCoordinator * Corrected testing, version bump for InvalidAuth, move uniq_id * Remove according to review * Await connect (py38) * Remove unneccesary code * Show only when multiple * Improve config_flow, rename consts * Update homeassistant/components/plugwise/climate.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/plugwise/climate.py Co-authored-by: J. Nick Koston <nick@koston.org> * Process review comments Co-authored-by: Robert Svensson <Kane610@users.noreply.github.com> Co-authored-by: J. Nick Koston <nick@koston.org>
42 lines
968 B
Python
42 lines
968 B
Python
"""Constant for Plugwise component."""
|
|
DOMAIN = "plugwise"
|
|
|
|
# Default directives
|
|
DEFAULT_NAME = "Smile"
|
|
DEFAULT_USERNAME = "smile"
|
|
DEFAULT_TIMEOUT = 10
|
|
DEFAULT_PORT = 80
|
|
DEFAULT_MIN_TEMP = 4
|
|
DEFAULT_MAX_TEMP = 30
|
|
DEFAULT_SCAN_INTERVAL = {"thermostat": 60, "power": 10}
|
|
|
|
DEVICE_CLASS_GAS = "gas"
|
|
|
|
# Configuration directives
|
|
CONF_MIN_TEMP = "min_temp"
|
|
CONF_MAX_TEMP = "max_temp"
|
|
CONF_THERMOSTAT = "thermostat"
|
|
CONF_POWER = "power"
|
|
CONF_HEATER = "heater"
|
|
CONF_SOLAR = "solar"
|
|
CONF_GAS = "gas"
|
|
|
|
ATTR_ILLUMINANCE = "illuminance"
|
|
CURRENT_HVAC_DHW = "hot_water"
|
|
DEVICE_STATE = "device_state"
|
|
|
|
SCHEDULE_ON = "true"
|
|
SCHEDULE_OFF = "false"
|
|
|
|
# Icons
|
|
SWITCH_ICON = "mdi:electric-switch"
|
|
THERMOSTAT_ICON = "mdi:thermometer"
|
|
WATER_ICON = "mdi:water-pump"
|
|
FLAME_ICON = "mdi:fire"
|
|
COOL_ICON = "mdi:snowflake"
|
|
IDLE_ICON = "mdi:circle-off-outline"
|
|
GAS_ICON = "mdi:fire"
|
|
POWER_ICON = "mdi:flash"
|
|
POWER_FAILURE_ICON = "mdi:flash-off"
|
|
SWELL_SAG_ICON = "mdi:pulse"
|
|
VALVE_ICON = "mdi:valve"
|