Chore Helper binary_sensor

Here’s an alternative that doesn’t start by selecting all sensors, only the ones in the chore_helper integration.

      state: >
        {{ integration_entities('chore_helper')
          | select('match', 'sensor') | map('states')
          | map('int', 'unknown') | reject('eq', 'unknown')
          | select('le', 0) | list | count > 0}}
1 Like