writeInputRegister()
Description
Write to Input Registers register.
Syntax
node1.writeInputRegister(address, value) node2.writeInputRegister(address, size, buffer)
Parameters
node1/node2
: ModbusSlaveNode
object.
address
: Input Registers register address to be written.
value
: Single Input Registers register value to be written.
size
: The number of multiple Input Registers to be written.
buffer
: Copy the array data in the array space pointed to by buffer to the Input Registers register.
Return
int
: If successful, return MODBUS_SUCCESS
, otherwise return EXCEPTION_CODE.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|
Library Reference
The text in the 86Duino reference material is modified from Arduino reference material, and according to Creative Commons Attribution-Share Alike 3.0 License The code examples in the references have been released into the public domain.