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