esphome/esphomeyaml/components/cover/template.py

60 lines
2.5 KiB
Python
Raw Normal View History

2018-05-20 12:41:52 +02:00
import voluptuous as vol
import esphomeyaml.config_validation as cv
from esphomeyaml import automation
from esphomeyaml.components import cover
from esphomeyaml.const import CONF_CLOSE_ACTION, CONF_LAMBDA, CONF_MAKE_ID, CONF_NAME, \
2018-05-21 17:01:47 +02:00
CONF_OPEN_ACTION, CONF_STOP_ACTION, CONF_OPTIMISTIC
from esphomeyaml.helpers import App, Application, NoArg, add, process_lambda, variable, optional, \
setup_component
2018-05-20 12:41:52 +02:00
MakeTemplateCover = Application.struct('MakeTemplateCover')
TemplateCover = cover.cover_ns.class_('TemplateCover', cover.Cover)
2018-06-02 22:22:20 +02:00
PLATFORM_SCHEMA = cv.nameable(cover.COVER_PLATFORM_SCHEMA.extend({
2018-06-02 22:22:20 +02:00
cv.GenerateID(CONF_MAKE_ID): cv.declare_variable_id(MakeTemplateCover),
cv.GenerateID(): cv.declare_variable_id(TemplateCover),
2018-05-21 17:01:47 +02:00
vol.Optional(CONF_LAMBDA): cv.lambda_,
vol.Optional(CONF_OPTIMISTIC): cv.boolean,
vol.Optional(CONF_OPEN_ACTION): automation.validate_automation(single=True),
vol.Optional(CONF_CLOSE_ACTION): automation.validate_automation(single=True),
vol.Optional(CONF_STOP_ACTION): automation.validate_automation(single=True),
}).extend(cv.COMPONENT_SCHEMA.schema), cv.has_at_least_one_key(CONF_LAMBDA, CONF_OPTIMISTIC))
2018-05-20 12:41:52 +02:00
def to_code(config):
2018-06-01 18:06:18 +02:00
rhs = App.make_template_cover(config[CONF_NAME])
2018-06-02 22:22:20 +02:00
make = variable(config[CONF_MAKE_ID], rhs)
2018-05-20 12:41:52 +02:00
2018-08-13 19:11:33 +02:00
cover.setup_cover(make.Ptemplate_, make.Pmqtt, config)
setup_component(make.Ptemplate_, config)
2018-08-13 19:11:33 +02:00
2018-06-01 18:06:18 +02:00
if CONF_LAMBDA in config:
2018-06-06 09:48:59 +02:00
for template_ in process_lambda(config[CONF_LAMBDA], [],
return_type=optional.template(cover.CoverState)):
2018-06-02 22:22:20 +02:00
yield
add(make.Ptemplate_.set_state_lambda(template_))
2018-05-20 12:41:52 +02:00
if CONF_OPEN_ACTION in config:
2018-06-13 21:27:58 +02:00
automation.build_automation(make.Ptemplate_.get_open_trigger(), NoArg,
config[CONF_OPEN_ACTION])
2018-05-20 12:41:52 +02:00
if CONF_CLOSE_ACTION in config:
2018-06-13 21:27:58 +02:00
automation.build_automation(make.Ptemplate_.get_close_trigger(), NoArg,
config[CONF_CLOSE_ACTION])
2018-05-20 12:41:52 +02:00
if CONF_STOP_ACTION in config:
2018-06-13 21:27:58 +02:00
automation.build_automation(make.Ptemplate_.get_stop_trigger(), NoArg,
config[CONF_STOP_ACTION])
2018-05-21 17:01:47 +02:00
if CONF_OPTIMISTIC in config:
add(make.Ptemplate_.set_optimistic(config[CONF_OPTIMISTIC]))
2018-05-20 12:41:52 +02:00
BUILD_FLAGS = '-DUSE_TEMPLATE_COVER'
def to_hass_config(data, config):
ret = cover.core_to_hass_config(data, config)
if ret is None:
return None
if CONF_OPTIMISTIC in config:
ret['optimistic'] = config[CONF_OPTIMISTIC]
return ret