This is my custom aiomodbus client
Project description
DM-aiomodbus
Urls
Usage
Connection
-
Serial
from dm_aiomodbus import DMAioModbusSerialClient modbus_client = DMAioModbusSerialClient( port="/dev/ttyUSB0", baudrate=9600, bytesize=8, stopbits=2, parity="N", name_tag="my_serial_plc" )
-
TCP
from dm_aiomodbus import DMAioModbusTcpClient modbus_client = DMAioModbusTcpClient( host="192.168.0.0", port=501, name_tag="my_tcp_plc" )
Requests
from dm_aiomodbus import DMAioModbusTcpClient, DMAioModbusTempClientInterface
import asyncio
async def main():
# create client
modbus_client = DMAioModbusTcpClient(
host="192.168.0.0",
port=501,
name_tag="my_tcp_plc"
)
# create read callback
async def read_callback(client: DMAioModbusTempClientInterface):
reg_258_259, err1 = await client.read_holding_registers(258, count=2) # get values and error if any
reg_256, err2 = await client.read_holding_registers(256)
reg_260_2, err3 = await client.read_holding_registers(address=260, slave=2) # read second slave-device
print(reg_258_259, reg_256, reg_260_2)
# create read callback
async def write_callback(client: DMAioModbusTempClientInterface):
status, err = await client.write_register(256, 1) # get write status and error if any
await client.write_register(260, value=0, slave=2) # write second slave-device
# request to plc
modbus_client.execute(read_callback) # execute without waiting result
# or
await modbus_client.execute_and_return(write_callback, timeout=3) # execute and wait result with timeout 3s (default 5)
if __name__ == "__main__":
asyncio.run(main())
Optional init parameters
Parameter | Type | Default Value | Description |
---|---|---|---|
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) |
Set custom logger
If you want set up custom logger
from dm_aiomodbus import DMAioModbusTcpClient # or another client
# 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
Release history Release notifications | RSS feed
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.1.7.tar.gz
(5.4 kB
view details)
Built Distribution
File details
Details for the file dm_aiomodbus-0.1.7.tar.gz
.
File metadata
- Download URL: dm_aiomodbus-0.1.7.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aabc08a293be2332022cb9e1829c432111f5fe2ce3f92dc483ffeb99525bc16f |
|
MD5 | 089386161acd87ed4b9dbac01daec587 |
|
BLAKE2b-256 | 8d32930bebcfdff7aae07ffc6c62ad756c867b88fb144093709e17de99581cea |
File details
Details for the file dm_aiomodbus-0.1.7-py3-none-any.whl
.
File metadata
- Download URL: dm_aiomodbus-0.1.7-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d9c8acf6c6db24584420ced4a3ece95419e6a30f3cbea7519877cb929c1b820 |
|
MD5 | 997179b30959245d15627aa71f86a5d3 |
|
BLAKE2b-256 | e66b65698f41906e6125563aa2572d97b9323f685ab36852be58b79d5f1cb422 |