Advertisement
Botura

Modbus config

Aug 16th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. ############################### Modbus Binding ########################################
  2. #
  3. # sets refresh interval to Modbus polling service.
  4. # Value in milliseconds (optional, defaults to 200)
  5. modbus:poll=500
  6.  
  7. # host:port (mandatory)
  8. #host_ip[:port[:interTransactionDelayMillis[:reconnectAfterMillis[:interConnectDelayMillis[:connectMaxTries]]]]]
  9. modbus:tcp.IOR11.connection=192.168.0.11:502:60:0:0:1
  10.  
  11. # The data type, can be "coil" "discrete" "holding" "input"
  12. #modbus:tcp.slave1.type=
  13. modbus:tcp.IOR11.type=coil
  14.  
  15. # The slave id (optional, defaults to '1')
  16. #modbus:tcp.slave1.id=
  17.  
  18. # The slave start address (optional, defaults to '0')
  19. #modbus:tcp.slave1.start=
  20. modbus:tcp.IOR11.start=15
  21.  
  22. # The number of data item to read
  23. # (optional, defaults to '0' - but set it to something meaningful)
  24. #modbus:tcp.slave1.length=
  25. modbus:tcp.IOR11.length=16
  26.  
  27. # Value type, required for combined registers (details: http://www.simplymodbus.ca/FAQ.htm#Types)
  28. # Can be "bit", "int8", "uint8", "int16", "uint16", "int32", "uint32", "float32"
  29. # (optional, defaults to 'uint16')
  30. #modbus:tcp.slave1.valuetype=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement