41 lines
		
	
	
		
			904 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			904 B
		
	
	
	
		
			Python
		
	
	
"""Allows to configure custom shell commands to turn a value for a sensor."""
 | 
						|
 | 
						|
import logging
 | 
						|
 | 
						|
from homeassistant.components.sensor import CONF_STATE_CLASS
 | 
						|
from homeassistant.const import (
 | 
						|
    CONF_DEVICE_CLASS,
 | 
						|
    CONF_ICON,
 | 
						|
    CONF_UNIQUE_ID,
 | 
						|
    CONF_UNIT_OF_MEASUREMENT,
 | 
						|
    Platform,
 | 
						|
)
 | 
						|
from homeassistant.helpers.trigger_template_entity import (
 | 
						|
    CONF_AVAILABILITY,
 | 
						|
    CONF_PICTURE,
 | 
						|
)
 | 
						|
 | 
						|
LOGGER = logging.getLogger(__package__)
 | 
						|
 | 
						|
CONF_COMMAND_TIMEOUT = "command_timeout"
 | 
						|
CONF_JSON_ATTRIBUTES = "json_attributes"
 | 
						|
CONF_JSON_ATTRIBUTES_PATH = "json_attributes_path"
 | 
						|
DEFAULT_TIMEOUT = 15
 | 
						|
DOMAIN = "command_line"
 | 
						|
PLATFORMS = [
 | 
						|
    Platform.BINARY_SENSOR,
 | 
						|
    Platform.COVER,
 | 
						|
    Platform.SENSOR,
 | 
						|
    Platform.SWITCH,
 | 
						|
]
 | 
						|
 | 
						|
TRIGGER_ENTITY_OPTIONS = {
 | 
						|
    CONF_AVAILABILITY,
 | 
						|
    CONF_DEVICE_CLASS,
 | 
						|
    CONF_ICON,
 | 
						|
    CONF_PICTURE,
 | 
						|
    CONF_STATE_CLASS,
 | 
						|
    CONF_UNIQUE_ID,
 | 
						|
    CONF_UNIT_OF_MEASUREMENT,
 | 
						|
}
 |