iobroker.ebus 3.0.3 → 3.0.4
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 +1 -1
- package/io-package.json +2 -2
- package/main.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ Attention: command in datapoint ebus.0.cmd is deleted after executing of command
|
|
|
55
55
|
|
|
56
56
|
## Changelog
|
|
57
57
|
|
|
58
|
-
### 3.0.
|
|
58
|
+
### 3.0.4 (2022-08-18)
|
|
59
59
|
* (René) tooltip in wizard added
|
|
60
60
|
* (René) flot and dependencies updated
|
|
61
61
|
* (René) errors from ebusd are shown as warning here in adapter, details schould be checked in logs of ebusd
|
package/io-package.json
CHANGED
package/main.js
CHANGED
|
@@ -261,7 +261,7 @@ async function ebusd_Command() {
|
|
|
261
261
|
const data = await promiseSocket.read();
|
|
262
262
|
|
|
263
263
|
if (data.includes("ERR")) {
|
|
264
|
-
adapter.log.warn("sent " + oCmds[n] + ", received " + data + " please check ebusd logs for details!";
|
|
264
|
+
adapter.log.warn("sent " + oCmds[n] + ", received " + data + " please check ebusd logs for details!");
|
|
265
265
|
}
|
|
266
266
|
else {
|
|
267
267
|
adapter.log.debug("received " + data);
|