Advertisement
JLindvig

Modig-kode....

May 25th, 2020
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.38 KB | None | 0 0
  1. params: >-
  2.   ['
  3.   {%- set rooms = {
  4.     "25": "input_boolean.vacuum_kitchen",
  5.     "17": "input_boolean.vacuum_bedroom",
  6.     "21": "input_boolean.vacuum_livingroom",
  7.     "19": "input_boolean.vacuum_hallway"
  8.   } -%}
  9.   {%- for id in rooms %}
  10.     {%- if is_state(rooms[id], 'on') %}
  11.       {%- if not loop.first -%},{%- endif -%}
  12.       {{ id }}
  13.     {%- endif %}
  14.   {%- endfor -%}
  15.   ']
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement