mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
8e75980ebd
* Cleanup dashboard JS * Add vscode * Save start_mark/end_mark * Updates * Updates * Remove need for cv.nameable It's a bit hacky but removes so much bloat from integrations * Add enum helper * Document APIs, and Improvements * Fixes * Fixes * Update PULL_REQUEST_TEMPLATE.md * Updates * Updates * Updates
31 lines
1,003 B
Python
31 lines
1,003 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import binary_sensor
|
|
from esphome.const import CONF_COMPONENT_ID, CONF_PAGE_ID, CONF_ID
|
|
from . import nextion_ns
|
|
from .display import Nextion
|
|
|
|
DEPENDENCIES = ['display']
|
|
|
|
CONF_NEXTION_ID = 'nextion_id'
|
|
|
|
NextionTouchComponent = nextion_ns.class_('NextionTouchComponent', binary_sensor.BinarySensor)
|
|
|
|
CONFIG_SCHEMA = binary_sensor.BINARY_SENSOR_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_id(NextionTouchComponent),
|
|
cv.GenerateID(CONF_NEXTION_ID): cv.use_id(Nextion),
|
|
|
|
cv.Required(CONF_PAGE_ID): cv.uint8_t,
|
|
cv.Required(CONF_COMPONENT_ID): cv.uint8_t,
|
|
})
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield binary_sensor.register_binary_sensor(var, config)
|
|
|
|
hub = yield cg.get_variable(config[CONF_NEXTION_ID])
|
|
cg.add(hub.register_touch_component(var))
|
|
|
|
cg.add(var.set_component_id(config[CONF_COMPONENT_ID]))
|
|
cg.add(var.set_page_id(config[CONF_PAGE_ID]))
|