mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
15331edb78
* Allow overriding setup priority * Add inheritance tree * Global variables * Tests and better validation * Fix * Lint
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
from esphomeyaml.components import display, uart
|
|
from esphomeyaml.components.uart import UARTComponent
|
|
import esphomeyaml.config_validation as cv
|
|
from esphomeyaml.const import CONF_ID, CONF_LAMBDA, CONF_UART_ID
|
|
from esphomeyaml.helpers import App, PollingComponent, Pvariable, add, get_variable, \
|
|
process_lambda, \
|
|
setup_component
|
|
|
|
DEPENDENCIES = ['uart']
|
|
|
|
Nextion = display.display_ns.class_('Nextion', PollingComponent, uart.UARTDevice)
|
|
NextionRef = Nextion.operator('ref')
|
|
|
|
PLATFORM_SCHEMA = display.BASIC_DISPLAY_PLATFORM_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(Nextion),
|
|
cv.GenerateID(CONF_UART_ID): cv.use_variable_id(UARTComponent),
|
|
}).extend(cv.COMPONENT_SCHEMA.schema)
|
|
|
|
|
|
def to_code(config):
|
|
for uart_ in get_variable(config[CONF_UART_ID]):
|
|
yield
|
|
rhs = App.make_nextion(uart_)
|
|
nextion = Pvariable(config[CONF_ID], rhs)
|
|
|
|
if CONF_LAMBDA in config:
|
|
for lambda_ in process_lambda(config[CONF_LAMBDA], [(NextionRef, 'it')]):
|
|
yield
|
|
add(nextion.set_writer(lambda_))
|
|
|
|
display.setup_display(nextion, config)
|
|
setup_component(nextion, config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_NEXTION'
|