mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-21 21:43:26 +02:00
45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import fan, output
|
|
from esphome.const import (
|
|
CONF_OSCILLATION_OUTPUT,
|
|
CONF_OUTPUT,
|
|
CONF_DIRECTION_OUTPUT,
|
|
CONF_OUTPUT_ID,
|
|
CONF_SPEED,
|
|
CONF_SPEED_COUNT,
|
|
)
|
|
from .. import speed_ns
|
|
|
|
SpeedFan = speed_ns.class_("SpeedFan", cg.Component)
|
|
|
|
CONFIG_SCHEMA = fan.FAN_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(CONF_OUTPUT_ID): cv.declare_id(SpeedFan),
|
|
cv.Required(CONF_OUTPUT): cv.use_id(output.FloatOutput),
|
|
cv.Optional(CONF_OSCILLATION_OUTPUT): cv.use_id(output.BinaryOutput),
|
|
cv.Optional(CONF_DIRECTION_OUTPUT): cv.use_id(output.BinaryOutput),
|
|
cv.Optional(CONF_SPEED): cv.invalid(
|
|
"Configuring individual speeds is deprecated."
|
|
),
|
|
cv.Optional(CONF_SPEED_COUNT, default=100): cv.int_range(min=1),
|
|
}
|
|
).extend(cv.COMPONENT_SCHEMA)
|
|
|
|
|
|
async def to_code(config):
|
|
output_ = await cg.get_variable(config[CONF_OUTPUT])
|
|
state = await fan.create_fan_state(config)
|
|
var = cg.new_Pvariable(
|
|
config[CONF_OUTPUT_ID], state, output_, config[CONF_SPEED_COUNT]
|
|
)
|
|
await cg.register_component(var, config)
|
|
|
|
if CONF_OSCILLATION_OUTPUT in config:
|
|
oscillation_output = await cg.get_variable(config[CONF_OSCILLATION_OUTPUT])
|
|
cg.add(var.set_oscillating(oscillation_output))
|
|
|
|
if CONF_DIRECTION_OUTPUT in config:
|
|
direction_output = await cg.get_variable(config[CONF_DIRECTION_OUTPUT])
|
|
cg.add(var.set_direction(direction_output))
|