Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Fujitsu HVAC (based on Ayla IOT) integration."""
2 
3 from datetime import timedelta
4 
5 API_TIMEOUT = 10
6 API_REFRESH = timedelta(minutes=5)
7 
8 DOMAIN = "fujitsu_fglair"
9 
10 CONF_REGION = "region"
11 CONF_EUROPE = "is_europe"
12 REGION_EU = "eu"
13 REGION_DEFAULT = "default"