mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-20 21:13:28 +02:00
59 lines
1.8 KiB
Python
59 lines
1.8 KiB
Python
import voluptuous as vol
|
|
|
|
from esphome.components import output
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_ID, CONF_OUTPUTS, CONF_TYPE
|
|
from esphome.cpp_generator import Pvariable, get_variable
|
|
from esphome.cpp_helpers import setup_component
|
|
|
|
BinaryCopyOutput = output.output_ns.class_('BinaryCopyOutput', output.BinaryOutput)
|
|
FloatCopyOutput = output.output_ns.class_('FloatCopyOutput', output.FloatOutput)
|
|
|
|
BINARY_SCHEMA = output.PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_ID): cv.declare_variable_id(BinaryCopyOutput),
|
|
vol.Required(CONF_TYPE): 'binary',
|
|
vol.Required(CONF_OUTPUTS): cv.ensure_list(cv.use_variable_id(output.BinaryOutput)),
|
|
})
|
|
|
|
FLOAT_SCHEMA = output.PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_ID): cv.declare_variable_id(FloatCopyOutput),
|
|
vol.Required(CONF_TYPE): 'float',
|
|
vol.Required(CONF_OUTPUTS): cv.ensure_list(cv.use_variable_id(output.FloatOutput)),
|
|
})
|
|
|
|
|
|
def validate_copy_output(value):
|
|
if not isinstance(value, dict):
|
|
raise vol.Invalid("Value must be dict")
|
|
type = cv.string_strict(value.get(CONF_TYPE, 'float')).lower()
|
|
value[CONF_TYPE] = type
|
|
if type == 'binary':
|
|
return BINARY_SCHEMA(value)
|
|
if type == 'float':
|
|
return FLOAT_SCHEMA(value)
|
|
raise vol.Invalid("type must either be binary or float, not {}!".format(type))
|
|
|
|
|
|
PLATFORM_SCHEMA = validate_copy_output
|
|
|
|
|
|
def to_code(config):
|
|
outputs = []
|
|
for out in config[CONF_OUTPUTS]:
|
|
for var in get_variable(out):
|
|
yield
|
|
outputs.append(var)
|
|
|
|
klass = {
|
|
'binary': BinaryCopyOutput,
|
|
'float': FloatCopyOutput,
|
|
}[config[CONF_TYPE]]
|
|
rhs = klass.new(outputs)
|
|
gpio = Pvariable(config[CONF_ID], rhs)
|
|
|
|
output.setup_output_platform(gpio, config)
|
|
setup_component(gpio, config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_COPY_OUTPUT'
|