mirror of
https://github.com/esphome/esphome.git
synced 2025-04-05 02:10:27 +01:00
70 lines
2.1 KiB
Python
70 lines
2.1 KiB
Python
from esphome import automation
|
|
from esphome.components import text_sensor
|
|
import esphome.config_validation as cv
|
|
import esphome.codegen as cg
|
|
from esphome.const import CONF_ID, CONF_STATE
|
|
|
|
from .. import nextion_ns, CONF_NEXTION_ID, CONF_PUBLISH_STATE, CONF_SEND_TO_NEXTION
|
|
|
|
from ..base_component import (
|
|
setup_component_core_,
|
|
CONFIG_TEXT_COMPONENT_SCHEMA,
|
|
)
|
|
|
|
CODEOWNERS = ["@senexcrenshaw"]
|
|
|
|
NextionTextSensor = nextion_ns.class_(
|
|
"NextionTextSensor", text_sensor.TextSensor, cg.PollingComponent
|
|
)
|
|
|
|
NextionPublishTextAction = nextion_ns.class_(
|
|
"NextionPublishTextAction", automation.Action
|
|
)
|
|
|
|
CONFIG_SCHEMA = (
|
|
text_sensor.text_sensor_schema(NextionTextSensor)
|
|
.extend(CONFIG_TEXT_COMPONENT_SCHEMA)
|
|
.extend(cv.polling_component_schema("never"))
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
hub = await cg.get_variable(config[CONF_NEXTION_ID])
|
|
var = cg.new_Pvariable(config[CONF_ID], hub)
|
|
await text_sensor.register_text_sensor(var, config)
|
|
await cg.register_component(var, config)
|
|
|
|
cg.add(hub.register_textsensor_component(var))
|
|
|
|
await setup_component_core_(var, config, ".txt")
|
|
|
|
|
|
@automation.register_action(
|
|
"text_sensor.nextion.publish",
|
|
NextionPublishTextAction,
|
|
cv.Schema(
|
|
{
|
|
cv.Required(CONF_ID): cv.use_id(NextionTextSensor),
|
|
cv.Required(CONF_STATE): cv.templatable(cv.string_strict),
|
|
cv.Optional(CONF_PUBLISH_STATE, default="true"): cv.templatable(cv.boolean),
|
|
cv.Optional(CONF_SEND_TO_NEXTION, default="true"): cv.templatable(
|
|
cv.boolean
|
|
),
|
|
}
|
|
),
|
|
)
|
|
async def sensor_nextion_publish_to_code(config, action_id, template_arg, args):
|
|
paren = await cg.get_variable(config[CONF_ID])
|
|
var = cg.new_Pvariable(action_id, template_arg, paren)
|
|
|
|
template_ = await cg.templatable(config[CONF_STATE], args, cg.const_char_ptr)
|
|
cg.add(var.set_state(template_))
|
|
|
|
template_ = await cg.templatable(config[CONF_PUBLISH_STATE], args, cg.bool_)
|
|
cg.add(var.set_publish_state(template_))
|
|
|
|
template_ = await cg.templatable(config[CONF_SEND_TO_NEXTION], args, cg.bool_)
|
|
cg.add(var.set_send_to_nextion(template_))
|
|
|
|
return var
|