mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
14 lines
276 B
Python
14 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"
|