Requires: IP-Symcon >= 5.0
boolean ALL_SetAnalog (integer $InstanceID, integer $ChannelID, float $Value)
InstanceID | ID of the device to be switched |
ChannelID | ID of the channel to be switched |
Value | Value to which the channel should be set |
If the command succeeds, it returns TRUE, otherwise FALSE. |
Sets the value of the channel with the ChannelID Channel of the device with the ID InstanceID to the value Value
The ChannelID can be seen from the status variables of the instance. See find out ChannelID
// Sets channel 3 of device 12345 to 20.4 ALL_SetAnalog(12345, 3, 20.4); //Turn device on