最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - how to request for read device identification in pymodbus 3.2.2 - Stack Overflow

programmeradmin1浏览0评论
from pymodbus.mei_message import ReadDeviceInformationResponse                
print(f"Reading device info from slave {slave_id}")
response = client.read_device_information(unit=slave_id)

if isinstance(response, ReadDeviceInformationResponse):
    for object_id, value in response.information.items():
        print(f"{object_id} : {value}")
else:
    print(f"Error: could not read device identification for slave {slave_id}")

It gives this error when I run in pymodbus 3.2.2:

Error: could not read device identification for slave 1. 

When I try running in pymodbus 3.2.0 I can get the device information:

Reading device info from slave 1
0 : b'pymodbus'
1 : b'PM'
2 : b'3.1.0'
发布评论

评论列表(0)

  1. 暂无评论