HA 84.6 set temperature

After preforming the upgrade moments ago, 84.6 seems to have broken the automations when you try to set the temperature.

I can call the service from the dev tools with not problems, copy and paste this into my automation… its broken. I’ve test this by using the “automation.turn_on” service and then call the automation.

Ideas?

{
“entity_id”: “climate.home”, “temperature”: “78”
}

I’m having the same problem! This is an automation that used to work without problem. I change the value using an input_number slider to change the target temperature of my generic thermostat. Now it’s not working. I’ve looked through the docs but can’t find any reason for this to stop working!

- id: input_number_change_l
  alias: Input_Number Change L
  trigger:
  - platform: state
    entity_id: input_number.l_temp
  action:
  - service: climate.set_temperature
    data_template:
      entity_id: climate.l_temp
      temperature: '{{ (states.input_number.l_temp.state|float) }}'

Not going to admit my stupid mistake…

This works just fine

alias: Presence Cool Temperature Arriving
  trigger:
  - entity_id: device_tracker.life360_caleb
    platform: state
    to: home
  - entity_id: device_tracker.life360_carter
    platform: state
    to: home
  - entity_id: device_tracker.life360_dad
    platform: state
    to: home
  - entity_id: device_tracker.life360_mom
    platform: state
    to: home
  condition:
  - condition: state
    entity_id: sensor.home_thermostat_operation_mode
    state: cool
  action:
  - data:
      entity_id: climate.home
      temperature: 78
    service: climate.set_temperature

I’ve discovered the problem!! For some reason all my automations had been turned off. I know they can be turned on and off from the entity state section but no clue how the whole group can be turned on/off. Anyway, I’ll leave this here, in case anyone has a similar problem.

lol, that was my problem too.

I wish you had! I’ve made so many daft mistakes with this hassio business now that I’ve lost all embarrassment :smile: :smile: I’ve never had my automations toggle off before but it’s a good lesson learnt!

Well… what I was doing was going to to the dev tools, and telling it to execute the automation which I thought for sure was working (maybe that is a bug). So, I went back to my dashboard, click the menu, then hit trigger. Everything worked Rrrrrr.