Documentation
ModBus_WriteRegisterShort
Require: IP-Symcon >= 4.4
boolean ModBus_WriteRegisterShort (int $InstanceID, int $Value)
Parameters
InstanceID | ID of the device to be switched |
Value | -32768 to 32767 |
Returns
If the command succeeds, it returns TRUE, otherwise FALSE.
Description
This function was named __ModBus_WriteRegisterSmallInt__ up to and including Version 4.3
Sets address with ID InstanceID to Value
Example
//Writes -123 into the register of the instance with the ID 12345
ModBus_WriteRegisterShort(12345, -123);