mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Fix fan oscillating (#818)
Fixes https://github.com/esphome/issues/issues/783
This commit is contained in:
parent
560251ab2a
commit
80aaf66963
2 changed files with 2 additions and 2 deletions
|
@ -24,4 +24,4 @@ def to_code(config):
|
|||
|
||||
if CONF_OSCILLATION_OUTPUT in config:
|
||||
oscillation_output = yield cg.get_variable(config[CONF_OSCILLATION_OUTPUT])
|
||||
cg.add(var.set_oscillation(oscillation_output))
|
||||
cg.add(var.set_oscillating(oscillation_output))
|
||||
|
|
|
@ -29,4 +29,4 @@ def to_code(config):
|
|||
|
||||
if CONF_OSCILLATION_OUTPUT in config:
|
||||
oscillation_output = yield cg.get_variable(config[CONF_OSCILLATION_OUTPUT])
|
||||
cg.add(var.set_oscillation(oscillation_output))
|
||||
cg.add(var.set_oscillating(oscillation_output))
|
||||
|
|
Loading…
Reference in a new issue