mirror of
https://github.com/esphome/esphome.git
synced 2025-04-16 07:40:29 +01:00
53 lines
2.3 KiB
Python
53 lines
2.3 KiB
Python
import voluptuous as vol
|
|
|
|
from esphome.automation import ACTION_REGISTRY
|
|
from esphome.components import text_sensor
|
|
from esphome.components.text_sensor import TextSensorPublishAction
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_ID, CONF_LAMBDA, CONF_NAME, CONF_STATE, CONF_UPDATE_INTERVAL
|
|
from esphome.cpp_generator import Pvariable, add, get_variable, process_lambda, templatable
|
|
from esphome.cpp_helpers import setup_component
|
|
from esphome.cpp_types import App, PollingComponent, optional, std_string
|
|
|
|
TemplateTextSensor = text_sensor.text_sensor_ns.class_('TemplateTextSensor',
|
|
text_sensor.TextSensor, PollingComponent)
|
|
|
|
PLATFORM_SCHEMA = cv.nameable(text_sensor.TEXT_SENSOR_PLATFORM_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(TemplateTextSensor),
|
|
vol.Optional(CONF_LAMBDA): cv.lambda_,
|
|
vol.Optional(CONF_UPDATE_INTERVAL): cv.update_interval,
|
|
}).extend(cv.COMPONENT_SCHEMA.schema))
|
|
|
|
|
|
def to_code(config):
|
|
rhs = App.make_template_text_sensor(config[CONF_NAME], config.get(CONF_UPDATE_INTERVAL))
|
|
template = Pvariable(config[CONF_ID], rhs)
|
|
text_sensor.setup_text_sensor(template, config)
|
|
setup_component(template, config)
|
|
|
|
if CONF_LAMBDA in config:
|
|
template_ = yield process_lambda(config[CONF_LAMBDA], [],
|
|
return_type=optional.template(std_string))
|
|
add(template.set_template(template_))
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_TEMPLATE_TEXT_SENSOR'
|
|
|
|
CONF_TEXT_SENSOR_TEMPLATE_PUBLISH = 'text_sensor.template.publish'
|
|
TEXT_SENSOR_TEMPLATE_PUBLISH_ACTION_SCHEMA = cv.Schema({
|
|
vol.Required(CONF_ID): cv.use_variable_id(text_sensor.TextSensor),
|
|
vol.Required(CONF_STATE): cv.templatable(cv.string_strict),
|
|
})
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_TEXT_SENSOR_TEMPLATE_PUBLISH,
|
|
TEXT_SENSOR_TEMPLATE_PUBLISH_ACTION_SCHEMA)
|
|
def text_sensor_template_publish_to_code(config, action_id, template_arg, args):
|
|
var = yield get_variable(config[CONF_ID])
|
|
rhs = var.make_text_sensor_publish_action(template_arg)
|
|
type = TextSensorPublishAction.template(template_arg)
|
|
action = Pvariable(action_id, rhs, type=type)
|
|
template_ = yield templatable(config[CONF_STATE], args, std_string)
|
|
add(action.set_state(template_))
|
|
yield action
|