You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ Then to use this in a card place the following in your entity card:
24
24
| type | String | Yes | none | custom:fan-control-entity-row|
25
25
| name | String | No | none | A custom name for the entity in the row |
26
26
| customTheme | Boolean | No | false | set to true to use a custom theme |
27
+
| sensStateWithSpeed | Boolean | No | false | Used only for certain firmware that requires the Statre command be sent with the speed command |
27
28
| customIsOffColor | String | No | '#f44c09' | Sets the color of the 'Off' button if fan is off |
28
29
| customIsOnLowColor | String | No | '#43A047' | Sets the color of the 'Low' button if fan is on low |
29
30
| customIsOnMedColor | String | No | '#43A047' | Sets the color of the 'Med' button if fan is on Medium |
@@ -33,6 +34,8 @@ Then to use this in a card place the following in your entity card:
33
34
34
35
The values for the colors can be any valid color string in "HEX", "RGB" or by color name.
35
36
37
+
The optional "sendStateWithSpeed" config entry is only needed to be set to true if for some reason your fan needs the state command of "on" to be sent along with the desired speed command. As far as I know this is only needed for use with fans flashed with the ESPHome Firmware.
38
+
36
39
<b>Comfguration Examples:</b>
37
40
38
41
```
@@ -61,6 +64,11 @@ The values for the colors can be any valid color string in "HEX", "RGB" or by co
61
64
customIsOnHiColor: '#222222'
62
65
customIsOffSpdColor: '#aaaaaa'
63
66
customIsOffColor: 'purple'
67
+
## USE THIS CONFIG FOR USE WITH THE ESPHOME FIRMWARE (ALONG WITHE THE THEME SETTING ABOVE IF DESIRED)
68
+
- entity: fan.master_bedroom_fan
69
+
type: custom:fan-control-entity-row
70
+
name: MBR Fan Not Custom
71
+
sendStateWithSpeed: true
64
72
```
65
73
66
74
This is with the default Lovelace frontend theme set:
0 commit comments