Documentation
ZW_DoorLockOperation
Require: IP-Symcon >= 4.1
boolean ZW_DoorLockOperation (int $InstanceID, int $Mode)
Parameters
| InstanceID | ID of the device to be switched |
| Mode | Mode to set the Z-Wave device to |
Returns
If the command succeeds, it returns TRUE, otherwise FALSE.
Description
Sets the Door Lock Operation Mode of the device with ID InstanceID to mode Mode.
| Modus | Value |
|---|---|
| Unsecured | 0 |
| Unsecured with timeout | 1 |
| Unsecured (inside) | 16 |
| Unsecured (inside) with timeout | 17 |
| Unsecured (outside) | 32 |
| Unsecured (outside) with timeout | 33 |
| Secured | 255 |
Example
//e.g. Switches the door lock operation mode to unsecured with a timeout
ZW_DoorLockOperation(12345,1);