mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
1c7ca4bc6f
* Recommend similar keys for spelling errors Fixes https://github.com/esphome/feature-requests/issues/68 * Fixes * Fix
114 lines
3.9 KiB
Python
114 lines
3.9 KiB
Python
import voluptuous as vol
|
|
|
|
from esphome.automation import ACTION_REGISTRY, maybe_simple_id
|
|
from esphome.components.power_supply import PowerSupplyComponent
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_ID, CONF_INVERTED, CONF_LEVEL, CONF_MAX_POWER, \
|
|
CONF_MIN_POWER, CONF_POWER_SUPPLY
|
|
from esphome.core import CORE
|
|
from esphome.cpp_generator import Pvariable, add, get_variable, templatable
|
|
from esphome.cpp_types import Action, esphome_ns, float_
|
|
|
|
PLATFORM_SCHEMA = cv.PLATFORM_SCHEMA.extend({
|
|
|
|
})
|
|
|
|
BINARY_OUTPUT_SCHEMA = cv.Schema({
|
|
vol.Optional(CONF_POWER_SUPPLY): cv.use_variable_id(PowerSupplyComponent),
|
|
vol.Optional(CONF_INVERTED): cv.boolean,
|
|
})
|
|
|
|
BINARY_OUTPUT_PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(BINARY_OUTPUT_SCHEMA.schema)
|
|
|
|
FLOAT_OUTPUT_SCHEMA = BINARY_OUTPUT_SCHEMA.extend({
|
|
vol.Optional(CONF_MAX_POWER): cv.percentage,
|
|
vol.Optional(CONF_MIN_POWER): cv.percentage,
|
|
})
|
|
|
|
FLOAT_OUTPUT_PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(FLOAT_OUTPUT_SCHEMA.schema)
|
|
|
|
output_ns = esphome_ns.namespace('output')
|
|
BinaryOutput = output_ns.class_('BinaryOutput')
|
|
BinaryOutputPtr = BinaryOutput.operator('ptr')
|
|
FloatOutput = output_ns.class_('FloatOutput', BinaryOutput)
|
|
FloatOutputPtr = FloatOutput.operator('ptr')
|
|
|
|
# Actions
|
|
TurnOffAction = output_ns.class_('TurnOffAction', Action)
|
|
TurnOnAction = output_ns.class_('TurnOnAction', Action)
|
|
SetLevelAction = output_ns.class_('SetLevelAction', Action)
|
|
|
|
|
|
def setup_output_platform_(obj, config, skip_power_supply=False):
|
|
if CONF_INVERTED in config:
|
|
add(obj.set_inverted(config[CONF_INVERTED]))
|
|
if not skip_power_supply and CONF_POWER_SUPPLY in config:
|
|
power_supply = None
|
|
for power_supply in get_variable(config[CONF_POWER_SUPPLY]):
|
|
yield
|
|
add(obj.set_power_supply(power_supply))
|
|
if CONF_MAX_POWER in config:
|
|
add(obj.set_max_power(config[CONF_MAX_POWER]))
|
|
if CONF_MIN_POWER in config:
|
|
add(obj.set_min_power(config[CONF_MIN_POWER]))
|
|
|
|
|
|
def setup_output_platform(obj, config, skip_power_supply=False):
|
|
CORE.add_job(setup_output_platform_, obj, config, skip_power_supply)
|
|
|
|
|
|
def register_output(var, config):
|
|
output_var = Pvariable(config[CONF_ID], var, has_side_effects=True)
|
|
CORE.add_job(setup_output_platform_, output_var, config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_OUTPUT'
|
|
|
|
CONF_OUTPUT_TURN_ON = 'output.turn_on'
|
|
OUTPUT_TURN_ON_ACTION = maybe_simple_id({
|
|
vol.Required(CONF_ID): cv.use_variable_id(BinaryOutput),
|
|
})
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_OUTPUT_TURN_ON, OUTPUT_TURN_ON_ACTION)
|
|
def output_turn_on_to_code(config, action_id, arg_type, template_arg):
|
|
for var in get_variable(config[CONF_ID]):
|
|
yield None
|
|
rhs = var.make_turn_on_action(template_arg)
|
|
type = TurnOnAction.template(arg_type)
|
|
yield Pvariable(action_id, rhs, type=type)
|
|
|
|
|
|
CONF_OUTPUT_TURN_OFF = 'output.turn_off'
|
|
OUTPUT_TURN_OFF_ACTION = maybe_simple_id({
|
|
vol.Required(CONF_ID): cv.use_variable_id(BinaryOutput)
|
|
})
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_OUTPUT_TURN_OFF, OUTPUT_TURN_OFF_ACTION)
|
|
def output_turn_off_to_code(config, action_id, arg_type, template_arg):
|
|
for var in get_variable(config[CONF_ID]):
|
|
yield None
|
|
rhs = var.make_turn_off_action(template_arg)
|
|
type = TurnOffAction.template(arg_type)
|
|
yield Pvariable(action_id, rhs, type=type)
|
|
|
|
|
|
CONF_OUTPUT_SET_LEVEL = 'output.set_level'
|
|
OUTPUT_SET_LEVEL_ACTION = cv.Schema({
|
|
vol.Required(CONF_ID): cv.use_variable_id(FloatOutput),
|
|
vol.Required(CONF_LEVEL): cv.templatable(cv.percentage),
|
|
})
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_OUTPUT_SET_LEVEL, OUTPUT_SET_LEVEL_ACTION)
|
|
def output_set_level_to_code(config, action_id, arg_type, template_arg):
|
|
for var in get_variable(config[CONF_ID]):
|
|
yield None
|
|
rhs = var.make_set_level_action(template_arg)
|
|
type = SetLevelAction.template(arg_type)
|
|
action = Pvariable(action_id, rhs, type=type)
|
|
for template_ in templatable(config[CONF_LEVEL], arg_type, float_):
|
|
yield None
|
|
add(action.set_level(template_))
|
|
yield action
|