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.1.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: dm_aiomodbus-0.2.1.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.1.tar.gz
Algorithm Hash digest
SHA256 7cbfb6ab3b51948679e22344505f9ba402ecc30b9ce5e901f96bb868fbffb1ba
MD5 f576f6d0a82a1a729264185a180b930d
BLAKE2b-256 8df609ec31dceff7a320d7e582cd4dfc14dd06e2d59bbfac08a80f69b69fe943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dm_aiomodbus-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bb368d53da7000b846010592ca25d82061b5edba20f74c59ce85c42da4476dc7
MD5 31be0c29b7e3a634db6e946dc4520ab5
BLAKE2b-256 060d6ce8f0d3b435da96bad8cd41f9adf8ab2e0270111d580924981814e9f5ff

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