22 lines
485 B
Python
22 lines
485 B
Python
from pymodbus.client.sync import ModbusSerialClient
|
|
import RS485Ext
|
|
import time
|
|
|
|
ser=RS485Ext.RS485Ext(port='/dev/ttyAMA0', baudrate=9600, stopbits=1)
|
|
|
|
client = ModbusSerialClient(method='rtu')
|
|
client.socket = ser
|
|
client.connect()
|
|
|
|
while True:
|
|
try:
|
|
result = client.read_holding_registers(address=0x9c42, count=1, unit=1)
|
|
print(result)
|
|
print(result.registers)
|
|
except Exception as e:
|
|
print("ERROR: %s" % str(e))
|
|
time.sleep(2)
|
|
|
|
client.close()
|
|
|