Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Gree Climate integration."""
2 
3 COORDINATORS = "coordinators"
4 
5 DATA_DISCOVERY_SERVICE = "gree_discovery"
6 
7 DISCOVERY_SCAN_INTERVAL = 300
8 DISCOVERY_TIMEOUT = 8
9 DISPATCH_DEVICE_DISCOVERED = "gree_device_discovered"
10 DISPATCHERS = "dispatchers"
11 
12 DOMAIN = "gree"
13 COORDINATOR = "coordinator"
14 
15 FAN_MEDIUM_LOW = "medium low"
16 FAN_MEDIUM_HIGH = "medium high"
17 
18 MAX_ERRORS = 2
19 
20 TARGET_TEMPERATURE_STEP = 1
21 
22 UPDATE_INTERVAL = 60