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 switch
|
|
|
|
from esphomeyaml.const import CONF_LAMBDA, CONF_MAKE_ID, CONF_NAME, CONF_TURN_OFF_ACTION, \
|
2018-05-21 17:01:47 +02:00
|
|
|
CONF_TURN_ON_ACTION, CONF_OPTIMISTIC
|
2018-06-06 09:48:59 +02:00
|
|
|
from esphomeyaml.helpers import App, Application, process_lambda, variable, NoArg, add, bool_, \
|
|
|
|
optional
|
2018-05-20 12:41:52 +02:00
|
|
|
|
2018-06-02 22:22:20 +02:00
|
|
|
MakeTemplateSwitch = Application.MakeTemplateSwitch
|
|
|
|
|
2018-06-11 10:01:54 +02:00
|
|
|
PLATFORM_SCHEMA = cv.nameable(switch.SWITCH_PLATFORM_SCHEMA.extend({
|
2018-06-02 22:22:20 +02:00
|
|
|
cv.GenerateID(CONF_MAKE_ID): cv.declare_variable_id(MakeTemplateSwitch),
|
2018-05-21 17:01:47 +02:00
|
|
|
vol.Optional(CONF_LAMBDA): cv.lambda_,
|
|
|
|
vol.Optional(CONF_OPTIMISTIC): cv.boolean,
|
2018-05-20 12:41:52 +02:00
|
|
|
vol.Optional(CONF_TURN_OFF_ACTION): automation.ACTIONS_SCHEMA,
|
|
|
|
vol.Optional(CONF_TURN_ON_ACTION): automation.ACTIONS_SCHEMA,
|
2018-06-11 10:01:54 +02:00
|
|
|
}), 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_switch(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-06-01 18:06:18 +02:00
|
|
|
if CONF_LAMBDA in config:
|
2018-06-02 22:22:20 +02:00
|
|
|
template_ = None
|
2018-06-06 09:48:59 +02:00
|
|
|
for template_ in process_lambda(config[CONF_LAMBDA], [],
|
|
|
|
return_type=optional.template(bool_)):
|
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_TURN_OFF_ACTION in config:
|
2018-06-02 22:22:20 +02:00
|
|
|
actions = None
|
|
|
|
for actions in automation.build_actions(config[CONF_TURN_OFF_ACTION], NoArg):
|
|
|
|
yield
|
2018-05-20 12:41:52 +02:00
|
|
|
add(make.Ptemplate_.add_turn_off_actions(actions))
|
|
|
|
if CONF_TURN_ON_ACTION in config:
|
2018-06-02 22:22:20 +02:00
|
|
|
actions = None
|
|
|
|
for actions in automation.build_actions(config[CONF_TURN_ON_ACTION], NoArg):
|
|
|
|
yield
|
2018-05-20 12:41:52 +02:00
|
|
|
add(make.Ptemplate_.add_turn_on_actions(actions))
|
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
|
|
|
|
|
|
|
switch.setup_switch(make.Ptemplate_, make.Pmqtt, config)
|
|
|
|
|
|
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_TEMPLATE_SWITCH'
|