Change to differentiate between night lighting and cloudy lighting

This commit is contained in:
2022-10-20 20:19:32 -04:00
parent 4b8db0fe3a
commit 6e3d740b80

View File

@ -126,7 +126,11 @@
<p>
{% if is_state('light.living_room_lights','on') %}
{% if is_state('input_boolean.early_night_mode','on') %}
"Because it is getting dark, I have turned on the lights for you in the living room, dining room, and mud room. This makes for a total of {{ states.sensor.current_lights_on.state }} lights on. "
{% else %}
"Due to less than optimal sunlight, I have turned on the lights for you in the living room, dining room, and mud room. This makes for a total of {{ states.sensor.current_lights_on.state }} lights on. "
{% endif %}
{% endif %}
</p>