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
|
2018-12-05 21:22:06 +01:00
|
|
|
from esphomeyaml.cpp_generator import variable, process_lambda, add
|
|
|
|
from esphomeyaml.cpp_helpers import setup_component
|
|
|
|
from esphomeyaml.cpp_types import Application, App, optional, NoArg
|
2018-05-20 12:41:52 +02:00
|
|
|
|
2018-11-12 23:30:31 +01:00
|
|
|
MakeTemplateCover = Application.struct('MakeTemplateCover')
|
|
|
|
TemplateCover = cover.cover_ns.class_('TemplateCover', cover.Cover)
|
2018-06-02 22:22:20 +02:00
|
|
|
|
2018-06-11 10:01:54 +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),
|
2018-11-12 23:30:31 +01:00
|
|
|
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,
|
2018-10-20 13:15:09 +02:00
|
|
|
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),
|
2018-11-12 23:30:31 +01:00
|
|
|
}).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)
|
2018-11-12 23:30:31 +01:00
|
|
|
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
|
2018-06-01 22:48:07 +02:00
|
|
|
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'
|
2018-11-03 14:08:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
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
|