esphome/esphomeyaml/components/fan/binary.py

30 lines
1.1 KiB
Python
Raw Normal View History

2018-04-07 01:23:03 +02:00
import voluptuous as vol
import esphomeyaml.config_validation as cv
from esphomeyaml.components import fan
2018-05-20 12:41:52 +02:00
from esphomeyaml.const import CONF_MAKE_ID, CONF_NAME, CONF_OSCILLATION_OUTPUT, CONF_OUTPUT
2018-04-07 01:23:03 +02:00
from esphomeyaml.helpers import App, add, get_variable, variable
PLATFORM_SCHEMA = fan.PLATFORM_SCHEMA.extend({
2018-06-02 22:22:20 +02:00
cv.GenerateID(CONF_MAKE_ID): cv.declare_variable_id(fan.MakeFan),
vol.Required(CONF_OUTPUT): cv.use_variable_id(None),
vol.Optional(CONF_OSCILLATION_OUTPUT): cv.use_variable_id(None),
2018-05-20 12:41:52 +02:00
}).extend(fan.FAN_SCHEMA.schema)
2018-04-07 01:23:03 +02:00
def to_code(config):
2018-06-02 22:22:20 +02:00
output = None
for output in get_variable(config[CONF_OUTPUT]):
yield
2018-04-07 01:23:03 +02:00
rhs = App.make_fan(config[CONF_NAME])
2018-06-02 22:22:20 +02:00
fan_struct = variable(config[CONF_MAKE_ID], rhs)
2018-04-07 01:23:03 +02:00
add(fan_struct.Poutput.set_binary(output))
if CONF_OSCILLATION_OUTPUT in config:
2018-06-02 22:22:20 +02:00
oscillation_output = None
for oscillation_output in get_variable(config[CONF_OSCILLATION_OUTPUT]):
yield
2018-04-07 01:23:03 +02:00
add(fan_struct.Poutput.set_oscillation(oscillation_output))
2018-05-20 12:41:52 +02:00
fan.setup_fan(fan_struct.Pstate, fan_struct.Pmqtt, config)