SensorModbusMaster icon indicating copy to clipboard operation
SensorModbusMaster copied to clipboard

An Arduino library to act as Modbus Master to control a sensor/slave

Results 15 SensorModbusMaster issues
Sort by recently updated
recently updated
newest added

The scanRegisters sketch is NOT an example of using this.

i noticed that any getXXXFromRegister call takes ~31ms, so i dug deeper and found that in getRegisters() it adds a Delay of 25ms presumably for when the message fails and...

First of all, I must say that it is a joy to use your library. Please add support of your library to Arduino portenta C33.

What is the typical usage for ```cpp float modbusMaster::float32FromRegister(byte regType, int regNum, endianness endian) { getRegisters(regType, regNum, FLOAT32_SIZE/2); return float32FromFrame(endian); } ``` can i call it by: reg1 = modbus.float32FromRegister(0x04,...