* Added new integration to support Electra Smart (HVAC) * fixes + option to set scan interval * renamed the module to electrasmart and added unittests * added non tested files to .coveragerc * changed the usage from UpdateCoordinator to each entity updates it self * small fixes * increased pypi package version, increased polling timeout to 60 seconds, improved error handling * PARALLEL_UPDATE=1 to prevent multi access to the API * code improvements * aligned with the new HA APIs * fixes * fixes * more * fixes * more * more * handled re-atuh flow * fixed test * removed hvac action * added shabat mode * tests: 100% coverage * ran hassfest * Update homeassistant/components/electrasmart/manifest.json Co-authored-by: Shay Levy <levyshay1@gmail.com> * Update homeassistant/components/electrasmart/manifest.json Co-authored-by: Shay Levy <levyshay1@gmail.com> * Update homeassistant/components/electrasmart/manifest.json Co-authored-by: Shay Levy <levyshay1@gmail.com> * Update homeassistant/components/electrasmart/climate.py Co-authored-by: Shay Levy <levyshay1@gmail.com> * address Shay's comments * address Shay's comments * address more comments --------- Co-authored-by: Shay Levy <levyshay1@gmail.com>
13 lines
318 B
Python
13 lines
318 B
Python
"""Constants for the Electra Air Conditioner integration."""
|
|
|
|
DOMAIN = "electrasmart"
|
|
|
|
CONF_PHONE_NUMBER = "phone_number"
|
|
CONF_OTP = "one_time_password"
|
|
CONF_IMEI = "imei"
|
|
SCAN_INTERVAL_SEC = 30
|
|
API_DELAY = 5
|
|
CONSECUTIVE_FAILURE_THRESHOLD = 4
|
|
UNAVAILABLE_THRESH_SEC = 120
|
|
PRESET_NONE = "None"
|
|
PRESET_SHABAT = "Shabat"
|