* 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
13 lines
276 B
Python
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"
|