mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-06-21 10:57:43 +00:00
14 lines
449 B
YAML
14 lines
449 B
YAML
v3_button_purifier:
|
|
template: v3_button
|
|
state_display: |
|
|
[[[
|
|
if (entity.state === 'off') { return 'Off'; }
|
|
if (!entity.attributes.preset_mode) { return 'Unknown preset'; }
|
|
return entity.attributes.preset_mode.charAt(0).toUpperCase() + entity.attributes.preset_mode.slice(1);
|
|
]]]
|
|
variables:
|
|
value_has_error: |
|
|
[[[
|
|
return states['binary_sensor.purifier_filter_needs_change'].state === 'on';
|
|
]]]
|