2020-08-04 17:00:02 -10:00
|
|
|
"""Allows to configure custom shell commands to turn a value for a sensor."""
|
|
|
|
|
|
|
|
|
|
CONF_COMMAND_TIMEOUT = "command_timeout"
|
|
|
|
|
DEFAULT_TIMEOUT = 15
|
2020-08-25 19:52:36 -05:00
|
|
|
DOMAIN = "command_line"
|
|
|
|
|
PLATFORMS = ["binary_sensor", "cover", "sensor", "switch"]
|