Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Snooz component."""
2 
3 from homeassistant.const import Platform
4 
5 DOMAIN = "snooz"
6 PLATFORMS: list[Platform] = [Platform.FAN]
7 
8 SERVICE_TRANSITION_ON = "transition_on"
9 SERVICE_TRANSITION_OFF = "transition_off"
10 
11 ATTR_VOLUME = "volume"
12 ATTR_DURATION = "duration"
13 
14 DEFAULT_TRANSITION_DURATION = 20