Skip to content

Instantly share code, notes, and snippets.

View peternorris2007-ai's full-sized avatar

peternorris2007-ai

View GitHub Profile
@peternorris2007-ai
peternorris2007-ai / All open windows and doors
Created October 31, 2025 07:26 — forked from EverythingSmartHome/All open windows and doors
A collection of useful templates for Home Assistant dashboards
{{ states.binary_sensor
| selectattr('attributes.device_class', 'in', ['door','window'])
| selectattr('state', 'equalto', 'on')
| list | count }}
@peternorris2007-ai
peternorris2007-ai / All open windows and doors
Created October 31, 2025 07:26 — forked from EverythingSmartHome/All open windows and doors
A collection of useful templates for Home Assistant dashboards
{{ states.binary_sensor
| selectattr('attributes.device_class', 'in', ['door','window'])
| selectattr('state', 'equalto', 'on')
| list | count }}