Update ifan02 example with new fan speed options (#1177)

This commit is contained in:
workingmanrob 2021-05-17 10:13:26 -04:00 committed by GitHub
parent d556c60e3f
commit d2afdce3ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -158,7 +158,7 @@ Then you need to set it up with yaml.
then:
- fan.turn_on:
id: ifan02_fan
speed: LOW
speed: 1
- if:
condition:
and:
@ -168,7 +168,7 @@ Then you need to set it up with yaml.
then:
- fan.turn_on:
id: ifan02_fan
speed: MEDIUM
speed: 2
- if:
condition:
and:
@ -178,7 +178,7 @@ Then you need to set it up with yaml.
then:
- fan.turn_on:
id: ifan02_fan
speed: HIGH
speed: 3
- switch.turn_off: update_fan_speed
- platform: gpio
@ -197,6 +197,7 @@ Then you need to set it up with yaml.
- platform: speed
output: fanoutput
id: ifan02_fan
speed_count: 3
name: "iFan02 Fan"
See Also