There is a “Mobile App” integration which creates this sensor:
The attribute’s name is “Low Power Mode”.
I wonder how to address this attribute.
In my experience, if some attribute is displayed as “Xxx Yyy Zzz”, that means that it’s actual name is “xxx_yyy_zzz”.
But it realized that I must address the attribute exactly as “Low Power Mode”:
Next I tried to use a “selectattr” filter with no success:
{{states | selectattr('attributes["Low Power Mode"]', 'eq', false) |
map(attribute='entity_id') | list }}
{{states | selectattr('attributes.low_power_mode', 'eq', false) |
map(attribute='entity_id') | list }}
Is it possible to use the “selectattr
” filter with similar attributes?