@thingwala/node-red-contrib-geyserwala-connect 0.0.9 → 0.0.10
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/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/nodes/geyserwala-api-rest.js +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Geyserwala Connect - Node-RED Integration <!-- omit in toc -->
|
|
|
5
5
|
|
|
6
6
|
## Usage
|
|
7
7
|
|
|
8
|
-
Use these nodes to integrate with your Geyserwala Connect to automate your
|
|
8
|
+
Use these nodes to integrate with your Geyserwala Connect to automate your geyser controller from Node-RED. For more detail see the [Integration](https://www.thingwala.com/geyserwala/connect/integration) section in the manual.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
# Tools
|
package/package.json
CHANGED
|
@@ -60,7 +60,7 @@ class GeyserwalaConnectorRest {
|
|
|
60
60
|
}
|
|
61
61
|
for (const node of this.subscriptions[key]) {
|
|
62
62
|
try {
|
|
63
|
-
node.onValue(blob[key])
|
|
63
|
+
node.onValue(`${this.host}:${this.port}/${key}`, blob[key])
|
|
64
64
|
} catch (error) {
|
|
65
65
|
this.RED.log.error(`{Geyserwala Connect} Handling messsage: ${error.message} [${key}] "${blob[key]}"`);
|
|
66
66
|
}
|