just to be sure, please have a look if this is the correct order for the new not condition, which should be and’ed with another condition:
Up to now, I wrote it as:
condition:
- condition: template
value_template: >
{{states('light.parking_light') != 'unavailable'}}
- condition: state
entity_id: binary_sensor.outside_daylight_sensor
state: 'on'
and I think, it should be like this now?:
condition:
- condition: not
conditions:
condition: state
entity_id: light.parking_light
state: unavailable
- condition: state
entity_id: binary_sensor.outside_daylight_sensor
state: 'on'
meaning, the parking light should not be unavailable, and daylight sensor should be on. I am a bit uncertain about the double (quadruple) wording of the first condition listing…
thanks for checking if you would