Hey everyone! Since this appears to be allowed here… I started a YouTube channel - original, I know.
I just got all new gear for content creation, and I’m really working on honing my video making skills, and delivering quality content.
Here is a link to the latest video:
As the channel grows, I will be giving away three Amazon Fire tablets, and when the channel reaches 1000 subscribers, I’ll have something special. Please drop by, check out the video, and let me know what you think - good or bad, and let me know if you have any ideas of what you’d like to see covered.
{% set total = 0 %}
{% if is_state('light.my_light_1', 'on') %}
{% set total = total + 1 %}
{% endif %}
{% if is_state('switch.my_light_2', 'on') %}
{% set total = total + 1 %}
{% endif %}
{% if total == 1 %}
{% set output = 'light On' %}
{% else %}
{% set output = 'lights On' %}
{% endif %}
{{total}} {{output}}