Script that bumps a Thermostat up by 1 degree

Trying to write a Script that bumps a Thermostat up by 1 degree. A bit lost as to what I am doing wrong.

increase_vent_temp:
  sequence:
  - service: climate.set_temperature
    data:
      target_temp_high: "{{ state_attr('climate.hvac_vent_temp', 'temperature') + 1 }}"
      target_temp_low: 16
    target:
      entity_id: climate.hvac_vent_temp

Go to developer tools → states and take a screenshot of your climate entity including the right hand column that shows the attributes. Drag and drop the screenshot into a post here.

1 Like

ahhh! thanks for the clue :slight_smile:

increase_vent_temp:
  sequence:
  - service: climate.set_temperature
    data:
      target_temp_high: "{{ state_attr('climate.hvac_vent_temp', 'target_temp_high') + 1 }}"
      target_temp_low: 16
    target:
      entity_id: climate.hvac_vent_temp