mirror of
https://github.com/home-assistant/core.git
synced 2026-09-07 05:52:27 +01:00
13 lines
253 B
Python
13 lines
253 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_EUROPE = "is_europe"
|
|
REGION_EU = "eu"
|
|
REGION_DEFAULT = "default"
|