Seeking help to set action based on manual thermostat temp change

I have an Ecobee3 connected to HA and all is working fine. I’m trying to figure out how to set a trigger or condition that resumes the Ecobee program if my wife turns the thermostat over 69 F. Below is my current config, but that is using the ambient temp from the Ecobee. I would like the trigger to be based upon the actual override temperature settings on the Ecobee.
Any help is much appreciated.

alias: Ecobee resume program on heat change over 69 (Duplicate)
description: ''
trigger:
  - platform: device
    device_id: 0a610274af603e22634b6d42150ac6f1
    domain: climate
    entity_id: climate.ecobee3
    type: current_temperature_changed
    above: 68
    for:
      hours: 0
      minutes: 1
      seconds: 0
condition: []
action:
  - service: ecobee.resume_program
    data:
      resume_all: true
      entity_id: climate.ecobee3
mode: single

The manual temperature setting is found in the temperature attribute.

alias: Ecobee resume program on heat change over 69
description: ''
trigger:
  - platform: numeric_state
    entity_id: climate.ecobee3
    attribute: temperature
    above: 68
    for:
      hours: 0
      minutes: 1
      seconds: 0
condition: []
action:
  - service: ecobee.resume_program
    data:
      resume_all: true
      entity_id: climate.ecobee3
mode: single

Hi,

I don’t have an ecobee but had a look at the integration docs to validate your setup and it looks ok to me.
From further googling though, I see that there is a known error on version 4.7.5.246. What version are you as this could maybe be related?

The post about the error on this version: Homekit resume schedule stopped functioning : ecobee (reddit.com)

I decided to stick with the original post using the ambient temp where the Ecobee is located and changed the time out to 15 minutes. It works fine and reverts back to the current program after 15 minutes, in case my wife has it turned up to like 78 degrees. :exploding_head: