You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
33 lines
1.3 KiB
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import fan, output
|
|
from esphome.const import CONF_DIRECTION_OUTPUT, CONF_OSCILLATION_OUTPUT, \
|
|
CONF_OUTPUT, CONF_OUTPUT_ID
|
|
from .. import empty_custom_fan_ns
|
|
|
|
EmptyCustomFan = empty_custom_fan_ns.class_('EmptyCustomFan', cg.Component)
|
|
|
|
CONFIG_SCHEMA = fan.FAN_SCHEMA.extend({
|
|
cv.GenerateID(CONF_OUTPUT_ID): cv.declare_id(EmptyCustomFan),
|
|
cv.Required(CONF_OUTPUT): cv.use_id(output.BinaryOutput),
|
|
cv.Optional(CONF_DIRECTION_OUTPUT): cv.use_id(output.BinaryOutput),
|
|
cv.Optional(CONF_OSCILLATION_OUTPUT): cv.use_id(output.BinaryOutput),
|
|
}).extend(cv.COMPONENT_SCHEMA)
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_OUTPUT_ID])
|
|
yield cg.register_component(var, config)
|
|
|
|
fan_ = yield fan.create_fan_state(config)
|
|
cg.add(var.set_fan(fan_))
|
|
output_ = yield cg.get_variable(config[CONF_OUTPUT])
|
|
cg.add(var.set_output(output_))
|
|
|
|
if CONF_OSCILLATION_OUTPUT in config:
|
|
oscillation_output = yield cg.get_variable(config[CONF_OSCILLATION_OUTPUT])
|
|
cg.add(var.set_oscillating(oscillation_output))
|
|
|
|
if CONF_DIRECTION_OUTPUT in config:
|
|
direction_output = yield cg.get_variable(config[CONF_DIRECTION_OUTPUT])
|
|
cg.add(var.set_direction(direction_output)) |