Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Big Ass Fans integration."""
2 
3 DOMAIN = "baf"
4 
5 # Most properties are pushed, only the
6 # query every 5 minutes so we keep the RPM
7 # sensors up to date
8 QUERY_INTERVAL = 300
9 
10 RUN_TIMEOUT = 20
11 
12 PRESET_MODE_AUTO = "auto"
13 
14 SPEED_COUNT = 7
15 SPEED_RANGE = (1, SPEED_COUNT)
16 
17 ONE_MIN_SECS = 60
18 ONE_DAY_SECS = 86400
19 HALF_DAY_SECS = 43200