2020-04-09 08:20:48 +00:00
|
|
|
"""Define constants for the Slide component."""
|
2019-09-03 17:09:25 +00:00
|
|
|
|
2022-01-13 09:46:16 +00:00
|
|
|
from homeassistant.const import Platform
|
|
|
|
|
2019-09-03 17:09:25 +00:00
|
|
|
API = "api"
|
2022-01-13 09:46:16 +00:00
|
|
|
COMPONENT_PLATFORM = Platform.COVER
|
2020-04-09 08:20:48 +00:00
|
|
|
CONF_INVERT_POSITION = "invert_position"
|
2019-09-03 17:09:25 +00:00
|
|
|
DOMAIN = "slide"
|
|
|
|
SLIDES = "slides"
|
2020-04-09 08:20:48 +00:00
|
|
|
DEFAULT_OFFSET = 0.15
|
2019-09-03 17:09:25 +00:00
|
|
|
DEFAULT_RETRY = 120
|