Modbus TCP implementation

Hello,

any idea how to implement below modbus TCP registers to IXON portal?

u16: 16 bits unsigned integer
c16: utf‐8 character encoding
bxxxx: bit field, xxxx is the mask to get the value

and what about 64 bits signed and unsigned integers ??

It’s register map from external device and on the machine there is no
PLC to convert this data so the data must be fetched directly by the IXrouter.

1 Like

let binaryString = inputRegister.toString(2).padStart(16, ‘0’);
var var_c_alarm_1 = binaryString.substr(0, 1);
var var_c_alarm_14 = binaryString.substr(13, 1);