pymodbus icon indicating copy to clipboard operation
pymodbus copied to clipboard

A full modbus protocol written in python

Results 68 pymodbus issues
Sort by recently updated
recently updated
newest added

### Discussed in https://github.com/pymodbus-dev/pymodbus/discussions/2157 Originally posted by **krogozinski** April 10, 2024 I have a requirement to define custom actions for `WriteMultipleRegistersRequest` and `WriteMultipleCoilsRequest`. This is for testing the Modbus client...

### Versions - Python: 3.9 - OS: - PyCharm 2023.1.5 (Community Edition) Build #PC-231.9414.12, built on February 14, 2024 Runtime version: 17.0.10+10-b829.26 x86_64 VM: OpenJDK 64-Bit Server VM by JetBrains...

Allows for custom ModbusRequest classes where responses may not be expected.

Updated `convert_from_registers()` under `/pymodbus/client/mixin.py/ModbusClientMixin` to properly convert floating point numbers read from PLCs

Fixes: https://github.com/pymodbus-dev/pymodbus/issues/2204

This update adds native support for some of the most commonly found datatypes in OT systems. This includes support for bitfields, unsigned integers, signed integers, and floating point numbers in...

I am attempting to log data from a Modbus slave device at a high rate, targeting one read per second. However, I am frequently encountering issues with incomplete Modbus messages....