次の小さなコード ブロックを作成しました。
from pymodbus.client.sync import ModbuTcpClient
def test(client):
client.connect()
print client.read_holding_registers(10, 1, unit=10)
client.close()
test(client)
.
印刷から得られる出力は次のとおりです。
ReadRegisterResponse (1)
.
レジスタが保持している実際の値 (整数/文字列) ではなく、これを取得するのはなぜですか?
答えてくれてありがとう!