iobroker.modbus 7.0.0 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/admin/assets/index-CXjG6RPN.js +2784 -0
- package/admin/assets/index-ClJs-3bs.js +1 -0
- package/admin/index_m.html +1 -1
- package/build/main.js +3 -942
- package/build/main.js.map +1 -1
- package/io-package.json +19 -20
- package/package.json +3 -4
- package/admin/assets/index-B6TQg3IZ.js +0 -1719
- package/build/lib/Master.js +0 -811
- package/build/lib/Master.js.map +0 -1
- package/build/lib/Put.js +0 -113
- package/build/lib/Put.js.map +0 -1
- package/build/lib/Slave.js +0 -545
- package/build/lib/Slave.js.map +0 -1
- package/build/lib/common.js +0 -371
- package/build/lib/common.js.map +0 -1
- package/build/lib/crc16modbus.js +0 -33
- package/build/lib/crc16modbus.js.map +0 -1
- package/build/lib/jsmodbus/modbus-client-core.js +0 -528
- package/build/lib/jsmodbus/modbus-client-core.js.map +0 -1
- package/build/lib/jsmodbus/modbus-server-core.js +0 -363
- package/build/lib/jsmodbus/modbus-server-core.js.map +0 -1
- package/build/lib/jsmodbus/transports/errors.js +0 -40
- package/build/lib/jsmodbus/transports/errors.js.map +0 -1
- package/build/lib/jsmodbus/transports/modbus-client-serial.js +0 -154
- package/build/lib/jsmodbus/transports/modbus-client-serial.js.map +0 -1
- package/build/lib/jsmodbus/transports/modbus-client-tcp-rtu.js +0 -166
- package/build/lib/jsmodbus/transports/modbus-client-tcp-rtu.js.map +0 -1
- package/build/lib/jsmodbus/transports/modbus-client-tcp-ssl.js +0 -138
- package/build/lib/jsmodbus/transports/modbus-client-tcp-ssl.js.map +0 -1
- package/build/lib/jsmodbus/transports/modbus-client-tcp.js +0 -123
- package/build/lib/jsmodbus/transports/modbus-client-tcp.js.map +0 -1
- package/build/lib/jsmodbus/transports/modbus-server-serial.js +0 -206
- package/build/lib/jsmodbus/transports/modbus-server-serial.js.map +0 -1
- package/build/lib/jsmodbus/transports/modbus-server-tcp.js +0 -112
- package/build/lib/jsmodbus/transports/modbus-server-tcp.js.map +0 -1
- package/build/lib/loggingUtils.js +0 -37
- package/build/lib/loggingUtils.js.map +0 -1
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ Some systems require first "write request" to deliver the data on "read request"
|
|
|
90
90
|
You can force this mode by setting of the "Max read request length" to 1.
|
|
91
91
|
|
|
92
92
|
**Notice:**
|
|
93
|
-
Some USB Modbus solutions (e.g. based on socat) can have trouble to work with serialport npm module.
|
|
93
|
+
Some USB Modbus solutions (e.g. based on `socat`) can have trouble to work with `serialport` npm module.
|
|
94
94
|
|
|
95
95
|
There is a software [**Modbus RTU <-> Modbus RTU over TCP**](http://mbus.sourceforge.net/index.html) gateway to enable using of serial RTU over TCP protocol.
|
|
96
96
|
|
|
@@ -311,13 +311,14 @@ There are some programs in folder `test` to test the TCP communication:
|
|
|
311
311
|
- RMMS is master simulator
|
|
312
312
|
- mod_RSsim.exe is a slave simulator. It can be that you need [Microsoft Visual C++ 2008 SP1 Redistributable Package](https://www.microsoft.com/en-us/download/details.aspx?id=5582) to start it (because of Side-By-Side error).
|
|
313
313
|
|
|
314
|
-
## Todo
|
|
315
|
-
- [ ] Parse files on https://github.com/ioBroker/modbus-templates and allow to import them directly from adapter
|
|
316
|
-
|
|
317
314
|
<!--
|
|
318
315
|
### **WORK IN PROGRESS**
|
|
319
316
|
-->
|
|
320
317
|
## Changelog
|
|
318
|
+
### 7.0.1 (2025-10-07)
|
|
319
|
+
* (bluefox) Redesign of the configuration tabs
|
|
320
|
+
* (bluefox) Added option to remove leading underscores in the object names
|
|
321
|
+
|
|
321
322
|
### 7.0.0 (2025-10-06)
|
|
322
323
|
* (copilot) Improved Modbus error handling and fault tolerance - continue polling working devices even when others fail
|
|
323
324
|
* (copilot) Fixes memory leak
|