I have two sensors. One sensor can get on of two values, “true” or “false”.
How to dynamically hide/display the other sensor in the GUI, set hidden: to true or false?
sensor.moon:
hidden: {{ states.sensor.moonphases_gui_hide.state }} -> Gives Config Error
hidden: “{{ states.sensor.moonphases_gui_hide.state }}” -> Does not work
hidden: ‘{{ states.sensor.moonphases_gui_hide.state }}’ -> Does not work
I am a bit baffled that Hassio only have code statement for hiding groups. What about other GUI items?