 | ZWManagerSetConfigParam Method |
Set the value of a configurable parameter in a device.
Namespace:
OpenZWave
Assembly:
OpenZWave (in OpenZWave.dll) Version: 255.255.255.255
Syntaxpublic bool SetConfigParam(
uint homeId,
byte nodeId,
byte param,
int value
)
Public Function SetConfigParam (
homeId As UInteger,
nodeId As Byte,
param As Byte,
value As Integer
) As Boolean
public:
virtual bool SetConfigParam(
[InAttribute] unsigned int homeId,
[InAttribute] unsigned char nodeId,
[InAttribute] unsigned char param,
[InAttribute] int value
) sealed
Parameters
- homeId
- Type: SystemUInt32
The Home ID of the Z-Wave controller that manages the node. - nodeId
- Type: SystemByte
The ID of the node to configure. - param
- Type: SystemByte
The index of the parameter. - value
- Type: SystemInt32
The value to which the parameter should be set.
Return Value
Type:
Booleantrue if the a message setting the value was sent to the device.
RemarksSome devices have various parameters that can be configured to control the device behaviour.
These are not reported by the device over the Z-Wave network, but can usually be found in
the device's user manual.
This method returns immediately, without waiting for confirmation from the device that the
change has been made.
See Also