Click or drag to resize

ZWManagerRequestConfigParam Method

Request the value of a configurable parameter from a device.

Namespace:  OpenZWave
Assembly:  OpenZWave (in OpenZWave.dll) Version: 255.255.255.255
Syntax
public void RequestConfigParam(
	uint homeId,
	byte nodeId,
	byte param
)

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.
Remarks

Some 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 requests the value of a parameter from the device, and then returns immediately, without waiting for a response. If the parameter index is valid for this device, and the device is awake, the value will eventually be reported via a ValueChanged notification callback. The ValueID reported in the callback will have an index set the same as _param and a command class set to the same value as returned by a call to Configuration::StaticGetCommandClassId.

See Also