Skip to main content

This is my custom aiomodbus client

Project description

DM-aiomodbus

Urls

Example

Connection

  • Serial

    from dm_aiomodbus import DMAioModbusSerialClient
    
    modbus_client = DMAioModbusSerialClient(
        port="/dev/ttyUSB0",
        baudrate=9600,
        bytesize=8,
        stopbits=2,
        parity="N"
    )
    
  • TCP

    from dm_aiomodbus import DMAioModbusTcpClient
    
    modbus_client = DMAioModbusTcpClient(
        host="192.168.0.0",
        port=501
    )
    
  • Simulator (always returns mock data)

    from dm_aiomodbus import DMAioModbusSimulatorClient
    
    modbus_client = DMAioModbusSimulatorClient()
    

Usage

  • Usual client
from dm_aiomodbus import DMAioModbusTcpClient
import asyncio


async def main():
    # create client
    modbus_client = DMAioModbusTcpClient(
        host="192.168.0.0",
        port=501,
        name_tag="my_tcp_plc"
    )

    # read registers
    reg_258_259, = await modbus_client.read_holding_registers(258, count=2)
    reg_256 = await modbus_client.read_holding_registers(256)
    # read second slave-device
    reg_260_2 = await modbus_client.read_holding_registers(address=260, slave=2)
    print(reg_258_259, reg_256, reg_260_2)

    # write registers
    status_256 = await modbus_client.write_register(256, 1)
    print(status_256)
    # write second slave-device
    await modbus_client.write_register(260, value=0, slave=2)


if __name__ == "__main__":
    asyncio.run(main())
  • Return-errors client

Error messages are returned with the execution result

from dm_aiomodbus import DMAioModbusTcpClient
import asyncio


async def main():
    # create client
    modbus_client = DMAioModbusTcpClient(
        host="192.168.0.0",
        port=501,
        return_errors=True
    )

    # read registers
    # get values and error (if present, else "")
    reg_258_259, err1 = await modbus_client.read_holding_registers(258, count=2)
    print(reg_258_259, err1)

    # write registers
    # get write status and error (if present, else "")
    status_256, err2 = await modbus_client.write_register(256, 1)
    print(status_256, err2)


if __name__ == "__main__":
    asyncio.run(main())

Optional init parameters

Parameter Type Default Value Description
return_errors bool False Error messages are returned with the execution result
execute_timeout_s int 5 requests timeout (s)
disconnect_timeout_s int 20 timeout waiting for an active connection after the last request (s)
after_execute_timeout_ms int 3 timeout between requests (ms)
name_tag str auto name tag for logger suffix

Set custom logger

If you want set up custom logger

from dm_aiomodbus import DMAioModbusTcpClient


# create custom logger
class MyLogger:
    def debug(self, message):
        pass

    def info(self, message):
        pass

    def warning(self, message):
        print(message)

    def error(self, message):
        print(message)


# set up custom logger for all clients
DMAioModbusTcpClient.set_logger(MyLogger())

Run in Windows

If you run async code in Windows, set correct selector

import asyncio
import sys

if sys.platform == "win32":
    asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dm_aiomodbus-0.2.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

dm_aiomodbus-0.2.0-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file dm_aiomodbus-0.2.0.tar.gz.

File metadata

  • Download URL: dm_aiomodbus-0.2.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for dm_aiomodbus-0.2.0.tar.gz
Algorithm Hash digest
SHA256 bf886f7579ff0883a78f7e622132cbc596f4bd045da6959d589957b02588e405
MD5 fcf5ef574a3f32dd6b979e6e9acee142
BLAKE2b-256 cdbaf8e1bab2a63b7ddad637de3778733c3705e853a17d2bca8b096a6a59aaee

See more details on using hashes here.

File details

Details for the file dm_aiomodbus-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for dm_aiomodbus-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5c20823724dfb2240f7bdc086078dd446c7f587877935078d2664c883eeb5dd1
MD5 54484165b2c442ac289af7f7b394122f
BLAKE2b-256 0797d31056cf2c5a0662dbacf0b6d0f4058dd747fdcbac148e3f72523d52d2bf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page