hass-core/homeassistant/components/fujitsu_fglair/const.py
Antoine Reversat e2f1c60981
Fix Fujitsu fglair authentication error and other issues (#125439)
* Use correct app credentials when europe is checked

* Rework to add china as well

* Use our own package since the maintainer of the original package is not responding

* Revert to using rewardone's package

* Import app credentials where needed instead of __init__

* Rework region selector

* Bump config entry minor and add migration

* Address comments
2024-09-18 16:23:35 +02:00

13 lines
276 B
Python

"""Constants for the Fujitsu HVAC (based on Ayla IOT) integration."""
from datetime import timedelta
API_TIMEOUT = 10
API_REFRESH = timedelta(minutes=5)
DOMAIN = "fujitsu_fglair"
CONF_REGION = "region"
CONF_EUROPE = "is_europe"
REGION_EU = "EU"
REGION_DEFAULT = "default"