dam112 changes
This commit is contained in:
21
snippets/test6b.py
Normal file
21
snippets/test6b.py
Normal file
@ -0,0 +1,21 @@
|
||||
from pymodbus.client.sync import ModbusSerialClient
|
||||
import RS485Ext
|
||||
import time
|
||||
|
||||
ser=RS485Ext.RS485Ext(port='/dev/ttyAMA0', baudrate=1200, stopbits=1)
|
||||
|
||||
client = ModbusSerialClient(method='rtu')
|
||||
client.socket = ser
|
||||
client.connect()
|
||||
|
||||
try:
|
||||
result = client.read_holding_registers(address=0x9c48, count=1, unit=4)
|
||||
# result = client.read_discrete_inputs(address=0x0000, count=1, unit=4)
|
||||
print(result)
|
||||
print(result.registers)
|
||||
# print(result.bits)
|
||||
except Exception as e:
|
||||
print("ERROR: %s" % str(e))
|
||||
|
||||
client.close()
|
||||
|
Reference in New Issue
Block a user