For some reason, this is ok:
trigger:
- platform: numeric_state
entity_id: sensor.plant_moisture
below: 15
for:
minutes: 65
But this is not:
trigger:
- platform: state
entity_id: input_boolean.dry_plants
state: 'on'
conditions:
- condition: numeric_state
entity_id: sensor.plant_moisture
below: 15
for:
minutes: 65
Can we add for
support for numeric_state
when it’s a condition? This is more of a simplified version of it all, but really I’m attempting to use for
in a choose
condition, and I’m getting all of these errors. It’s something that would’ve typically been in the trigger state, but in order to use choose
it has to be pushed to the conditions.