0

我正在尝试使用 Python 将 1 位从我的电脑(192.168.0.2)发送到西门子网络输入(IP:192.168.0.11:504)。但我无法让它工作。目标是通过 modbus 连接发送位来触发 BO31 条件。

我的 Python 代码:

import socket
from umodbus import conf
from umodbus.client import tcp
 
# Enable values to be signed (default is False).
conf.SIGNED_VALUES = True
 
### Creating connection
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect(('192.168.0.11', 504))
 
message = tcp.write_multiple_coils(slave_id=1, starting_address=1, values=[1, 0, 0, 0])
 
# Response depends on Modbus function code. This particular returns the
# amount of coils written, in this case it is.
response = tcp.send_message(message, sock)
print(response)
sock.close()
print("Transfer finished")
4

1 回答 1

0

根据我的评论,tcp.write_multiple_coils(slave_id=1, starting_address=1, values=[1, 0, 0, 0])写入四个线圈(1/true 到线圈 1,然后 0/false 到线圈 2,3 和 4);要编写单个线圈,请使用write_single_coiltcp.write_multiple_coils(slave_id=1, starting_address=1, values=[1])(最好取决于您的设备;并非所有设备都实现这两种功能,但我建议从 开始write_single_coil)。

于 2020-08-20T21:21:33.550 回答