Z-Wave Aeon Garage Door Controller ZW062 not opening or closing

Hi - I have the same ZW062 controller here, and I have it working up to a point - in that I can sense the door position, and simulate a button press to trigger an open/close.

Is it possible to send a specific open or close command to these controllers?

ie I want to be able to open the roller door when I arrive home, but if the door is already open, then it should stay open.

Same with sending a close command when we leave - I don’t want the door to re-open.

I tried sending a 0 or 255 to the Switch, but that didn’t do anything, the only way I can trigger a response is to send an ON command.

Any thoughts?

Hi Paul,
from my point of view you can monitor the current status of the garage door from the sensor. Looking to the properties of the sensor (defined as Number), I get:


```php
{
  "link": "http://<IP-Address>:8080/rest/items/Garagentorsensor",
  "state": "0",
  "stateDescription": {
    "pattern": "%.0f",
    "readOnly": true,
    "options": [
      {
        "value": "0",
        "label": "Closed"
      },
      {
        "value": "252",
        "label": "Closing"
      },
      {
        "value": "253",
        "label": "Stopped"
      },
      {
        "value": "254",
        "label": "Opening"
      },
      {
        "value": "255",
        "label": "Open"
      }
    ]
  },
  "type": "Number",
  "name": "Garagentorsensor",
  "label": "Garagentor Status",
  "tags": [],
  "groupNames": [
    "Main",
    "Garage"
  ]
}

So you can just write a rule depending on the current state e. g.:

   when
	Item Garagentorswitch received command
then
         if ((Garagentorsensor.state == 0) && (Garagentorswitch == 1)
...