大家好,我需要一些帮助
代码:
namespace
答案 0 :(得分:0)
选中此stack_post,
您忘记了unit
参数,而是使用print(response.registers)
而不是print(response)
。
您应该具有以下代码段代码:
response = client.read_holding_registers(0, 1, unit=<set-the-unit-ID>) # Note.
if not response.isError():
'''isError() method implemented in pymodbus 1.4.0 and above'''
print(response.registers) # Note.
else:
# Handle Error.
print('Unable to read or there is the connection problem.')
[注意]:
unit
是1
。