#tuya airconditioner not running automation based on current temp

1 messages · Page 1 of 1 (latest)

viscid arrow
#

I have an AC in Tuya which is in HA - when i created an automation that says if current temp (not set temp) is above 60 but below 90 then set AC to 70 and put it on cool mode. The AC entity shows current temp is 70F - but the automation never runs.

crystal coyote
#

I'm sorry, but you would have to share the Automation if you want someone to look at it. And not in a photo.

vivid mauveBOT
#

@viscid arrow Sadly we're not mind readers (any more anyway, not after the last time we tried). Please share the YAML and any errors so we can see what you've done.

eternal compass
#

its enough to tell that it will only trigger when the value crosses the threshold.

#

Yes the actual yaml is better to share, but it's not that big of a mystery that it can't be determined by the image.

viscid arrow
#

sure standby

eternal compass
#

This numeric_state trigger will only activate when the current_temperature goes from below 60 to above 60, or from above 90 to below 90, and lands within 60–90.

viscid arrow
#

what i am looking to do is basically a range with no time frame - if your temp is between 60F and 90F then kick on the AC

#

where do i find the YML for it

eternal compass
#

3 dots in the edge of every trigger, condition, or action. Or if it is saved, there's 3 dots in the upper right corner for seeing the whole thing

viscid arrow
#

trigger: numeric_state
entity_id:

  • climate.bedroom_ac
    attribute: current_temperature
    above: 60
    below: 90