Modbus
ModbusServer - ReadBool
Read bool value from modbus server
IN
| Name | Type | Description |
|---|---|---|
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Bool | Value read from address. |
| Error | ErrorState | Gets the execution error message |
ModbusServer - ReadInt
Read int value from modbus server
IN
| Name | Type | Description |
|---|---|---|
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Int | Value read from address. |
| Error | ErrorState | Gets the execution error message |
ModbusServer - ReadShort
Read short value from modbus server
IN
| Name | Type | Description |
|---|---|---|
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Int | Value read from address. |
| Error | ErrorState | Gets the execution error message |
ModbusServer - ReadFloat
Read float value from modbus server
IN
| Name | Type | Description |
|---|---|---|
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Float | Value read from address. |
| Error | ErrorState | Gets the execution error message |
ModbusServer - ReadDouble
Read double value from modbus server
IN
| Name | Type | Description |
|---|---|---|
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Double | Value read from address. |
| Error | ErrorState | Gets the execution error message |
ModbusServer - ReadString
Read string value from modbus server
IN
| Name | Type | Description |
|---|---|---|
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | String | Value read from address. |
| Error | ErrorState | Gets the execution error message |
ModbusServer - WriteBool
Write bool value to modbus server
IN
| Name | Type | Description |
|---|---|---|
| Value | Bool | The value to write. |
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusServer - WriteInt
Write int value to modbus server
IN
| Name | Type | Description |
|---|---|---|
| Value | Int | The value to write. |
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusServer - WriteShort
Write short value to modbus server
IN
| Name | Type | Description |
|---|---|---|
| Value | Int | The value to write. |
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusServer - WriteFloat
Write float value to modbus server
IN
| Name | Type | Description |
|---|---|---|
| Value | Float | The value to write. |
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusServer - WriteDouble
Write double value to modbus server
IN
| Name | Type | Description |
|---|---|---|
| Value | Double | The value to write. |
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusServer - WriteString
Write string value to modbus server
IN
| Name | Type | Description |
|---|---|---|
| Value | String | The value to write. |
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusServer - Read
Reads a value of given type from Modbus server device.
IN
| Name | Type | Description |
|---|---|---|
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutValue | < T > | The read value from server address |
| Error | ErrorState | Gets the execution error message |
ModbusServer - Start
Start a server modbus
IN
| Name | Type | Description |
|---|---|---|
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusServer - Stop
Stop a modbus server
IN
| Name | Type | Description |
|---|---|---|
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusServer - Write
Writes a value of given type to Modbus server device.
IN
| Name | Type | Description |
|---|---|---|
| InValue | < T > | The value to write. |
| AddressTag | DynamicEnum | The address to read from. |
| InServer | DynamicEnum | The server instace |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusClient - Connect
Connect the modbus client
IN
| Name | Type | Description |
|---|---|---|
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusClient - Disconnect
Disconnect the modbus client
IN
| Name | Type | Description |
|---|---|---|
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusClient - ReadBool
Read bool value from modbus device
IN
| Name | Type | Description |
|---|---|---|
| RegisterType | DynamicEnum | Type register. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Bool | The bool value. |
| Error | ErrorState | Gets the execution error message |
ModbusClient - ReadDouble
Read double value from modbus device
IN
| Name | Type | Description |
|---|---|---|
| RegisterType | DynamicEnum | Type register. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Double | The double value. |
| Error | ErrorState | Gets the execution error message |
ModbusClient - ReadFloat
Read float value from modbus device
IN
| Name | Type | Description |
|---|---|---|
| RegisterType | DynamicEnum | Type register. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Float | The float value. |
| Error | ErrorState | Gets the execution error message |
ModbusClient - ReadInt
Read int value from modbus device
IN
| Name | Type | Description |
|---|---|---|
| RegisterType | DynamicEnum | Type register. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Int | The int value. |
| Error | ErrorState | Gets the execution error message |
ModbusClient - ReadShort
Read short value from modbus device
IN
| Name | Type | Description |
|---|---|---|
| RegisterType | DynamicEnum | Type register. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | Int16 | The short value. |
| Error | ErrorState | Gets the execution error message |
ModbusClient - ReadString
Read string from modbus device
IN
| Name | Type | Description |
|---|---|---|
| StringLength | Int | The length of the string to read. |
| RegisterType | DynamicEnum | Type register. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Value | String | The read string. |
| Error | ErrorState | Gets the execution error message |
ModbusClient - WriteBool
Write bool value to modbus device
IN
| Name | Type | Description |
|---|---|---|
| Value | Bool | The bool to write. |
| RegisterType | DynamicEnum | Type register. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusClient - WriteDouble
Write double value to modbus device
IN
| Name | Type | Description |
|---|---|---|
| Value | Double | The double to write. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusClient - WriteFloat
Write float value to modbus device
IN
| Name | Type | Description |
|---|---|---|
| Value | Float | The float to write. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusClient - WriteInt
Write int value to modbus device
IN
| Name | Type | Description |
|---|---|---|
| Value | Int | The int to write. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusClient - WriteShort
Write short value to modbus device
IN
| Name | Type | Description |
|---|---|---|
| Value | Int16 | The short to write. |
| IgnoreCastError | Bool | Whether or not ignore the cast error. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusClient - WriteString
Write string value to modbus device
IN
| Name | Type | Description |
|---|---|---|
| Value | String | The string to write. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |
ModbusClient - Read
Reads a value of given type from Modbus client device.
IN
| Name | Type | Description |
|---|---|---|
| RegisterType | DynamicEnum | Type register. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutValue | < T > | The bool value. |
| Error | ErrorState | Gets the execution error message |
ModbusClient - Write
Writes a value of given type to Modbus client device.
IN
| Name | Type | Description |
|---|---|---|
| InValue | < T > | The value to write |
| RegisterType | DynamicEnum | Type register. |
| Address | Int | Modbus address. |
| InClient | DynamicEnum | DynamicEnum |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| Error | ErrorState | Gets the execution error message |