NGD00Z-4 Garage door Opener

I have successfully got the NGD00Z-4 Garage door Opener added to HA and it shows on the overview dashboard. I can get it to open and close off this dashboard however I cannot work out how to get it to open and close in my automation. Here is what I have been attempting with both cover_open and cover_close,

alias: Garage Door Control
description: ""
trigger:
  - platform: state
    entity_id:
      - input_button.garage_door_button
action:
  - service: cover.open_cover
    data: {}
    target:
      entity_id: cover.garage_door_opener

It looks like you defined the trigger, but not the state change of the trigger that is changing.

trigger:
  - platform: state
    entity_id:
      - input_button.garage_door_button
    from: "off"
    to: "on"

Thank you. I feel a bit of a clutz but I am learning and thanks for the help