diff --git a/modbus-read/changelog.txt b/modbus-read/changelog.txt index e953666..6e7ac4d 100644 --- a/modbus-read/changelog.txt +++ b/modbus-read/changelog.txt @@ -1,3 +1,8 @@ +Modbus WRITE v2020.2F +- Fixed: Bug pymodbusTCP (TCP/IP) python plugin conversion fixed +- Optimized: TCP/IP port debug logging +- Optimized: set default TCP/IP port to 502 + Modbus READ v2020.2E - Fixed: Plugin not starting in unreleased beta versions (dependancies check) - Fixed: Default function set to to read holding registers. diff --git a/modbus-read/plugin.py b/modbus-read/plugin.py index 487f9fb..5979bb1 100644 --- a/modbus-read/plugin.py +++ b/modbus-read/plugin.py @@ -11,7 +11,7 @@ # """ - +

Modbus RTU / ASCII / TCP/IP - READ

With this plugin you can read from RS485 Modbus devices with methods RTU/ASCII/TCP
@@ -27,7 +27,7 @@ Means a MODBUS RTU packet wrapped in a TCP packet. The message bytes are modified to add the 6 byte MBAP header and remove the two byte CRC.

TCP/IP

It is a network protocol - classic Ethernet TCP/IP with the 10/100 Mbit/s speed rate, a standard net HW Ethernet card is sufficient.
- The communication principle (1Master x nSlave) is the same as for Modbus RTU.
+ The communication principle (1Master x nSlave) is the same as for Modbus RTU. used port is most likely: 502

Set-up and Configuration:

See wiki link above.
@@ -75,7 +75,7 @@