Skip to content

PyModbus v1.5.1

Compare
Choose a tag to compare
@dhoomakethu dhoomakethu released this 04 May 06:28
· 2057 commits to master since this release
7f788a4

Version 1.5.1

  • Fix device information selectors

  • Fixed behaviour of the MEI device information command as a server when an invalid object_id is provided by an external client.

  • Add support for repeated MEI device information Object IDs (client/server)

  • Added support for encoding device information when it requires more than one PDU to pack.

  • Added REPR statements for all syncchronous clients

  • Added isError method to exceptions, Any response received can be tested for success before proceeding.

    res = client.read_holding_registers(...)
    if not res.isError():
        # proceed
    else:
        # handle error or raise
    
  • Add examples for MEI read device information request