« Back to Product

Documentation

LCN_AddThresholdDefined

 boolean LCN_AddThresholdDefined (int $InstanceID, int $Register, int $Threshold, float $Value) 

Parameters

InstanceID

ID of the device to be switched

Register

Register of the threshold value to be switched (1x5

Threshold

Threshold to be set (1x5

Value

Value of the threshold

Returns

If the command succeeds, it returns TRUE, otherwise FALSE.

Description

Adds the value Value of the threshold Threshold in the register Register relative to the programmed value of the LCN module with the ID InstanceID.

Example

// 1x5 threshold
// Adds the value 2.5 relative to the programmed value into threshold 2 of the instance with ID 12345
LCN_AddThresholdDefined(12345, 0, 2, 2.5);

// 4x4 threshold
// Adds the value 2.5 relative to the programmed value into threshold 2 in register 3 of the instance with ID 12345
LCN_AddThresholdDefined(12345, 3, 2, 2.5);
Any questions?