Hi,
I've build an ESPHome device with bme280 sensor, and I'm trying to create an automation to turn on and set an air conditioner in a room.
The temperature its below the 22°C and I don't understand why the automation trigger doesn't run. I tried to check the trace and its blank and the automation start its never. The automation its in enable state too.
What I did in wrong way? Why the trigger doesn't run?
I edited the automation by Visual-GUI.
Below the automation code:
description: ""
triggers:
- trigger: numeric_state
entity_id:
- sensor.test_esp32_wroom_temperature
below: 22
conditions: []
actions:
- action: climate.turn_on
metadata: {}
data: {}
target:
entity_id: climate.air_sala
mode: single```