Netatmo thermostat boost mode

Hi @Jcarlier, yes this one is a bit tricky. I realize now that my instructions for this one are not the best.
So you start by creating the new automation, and paste this:

alias: Heating Boost Finish
# Stop the Heating Boost script when its time is up.
trigger:
  - platform: state
# ! Replace this with the entity ID you got above for the Heating Boost script
    entity_id: script.1625783840608
    from: 'on'
    to: 'off'
condition:
  - condition: state
    entity_id: input_boolean.boost_active
    state: 'on'

# Set the Netatmo thermostat back to Schedule mode.
# The device_id needs to be replaced, see below how to
action:
  - service: climate.set_preset_mode
    data:
      preset_mode: Schedule
    target:
      device_id: DELETE_THIS
  - delay: '00:00:02'

# The hot water example I was talking about earlier
#  - type: turn_off
#    device_id: 00348ac0a3d91cf5118effef74bc5a3e
#    entity_id: switch.shelly1_valve_hw
#    domain: switch

# Turn off the Boost active status.
  - service: input_boolean.turn_off
    data:
      entity_id: input_boolean.boost_active
mode: single

Now switch the editor to “Visual editor” in upper right corner.
And in Targets, delete the device with the “DELETE_THIS” name, click on Pick device (the blue icon), and pick your Netatmo.
Like this:

Now you can save it and you should be good to go.