@thingwala/node-red-contrib-geyserwala-connect 0.0.3 → 0.0.5
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 +26 -0
- package/Makefile +13 -5
- package/README.md +0 -8
- package/examples/Basic_All_Nodes.json +498 -186
- package/examples/Demo_Dashboard.json +1425 -0
- package/examples/Victron_OS_Large_BMS_SoC.json +220 -0
- package/package.json +2 -2
- package/src/nodes/geyserwala-api.html +1 -1
- package/src/nodes/geyserwala-nodes.html +49 -19
- package/src/nodes/geyserwala-nodes.js +32 -23
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Change Log - Geyserwala Connect - Node-RED Plugin
|
|
2
|
+
|
|
3
|
+
## [0.0.5] - 2023-12-20
|
|
4
|
+
|
|
5
|
+
Allow for custom signals
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Custom node.
|
|
9
|
+
|
|
10
|
+
## [0.0.4] - 2023-12-05
|
|
11
|
+
|
|
12
|
+
Migrate to persistent latch signals, with programmable hold time
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- `external-disable` signal, accepts integer of number or seconds to latch, or true (defaults to 24 hours). Zero/false will clear.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- naming to geyserwala-connect-...
|
|
19
|
+
- `external-demand` signal: accepts integer of number of seconds to latch, or true (defaults to 24 hours). Zero/false will clear.
|
|
20
|
+
|
|
21
|
+
### Removed
|
|
22
|
+
- `lowpower-enable`: replaced by `external-disable`.
|
|
23
|
+
|
|
24
|
+
## [0.0.3] - 2023-09-01
|
|
25
|
+
|
|
26
|
+
Initial development
|
package/Makefile
CHANGED
|
@@ -5,16 +5,24 @@ setup:
|
|
|
5
5
|
cd .node-red && \
|
|
6
6
|
npm init -y && \
|
|
7
7
|
npm install node-red && \
|
|
8
|
-
npm install mqtt
|
|
9
|
-
|
|
8
|
+
npm install mqtt
|
|
9
|
+
|
|
10
|
+
link:
|
|
11
|
+
cd .node-red/node_modules && \
|
|
10
12
|
ln -sf ../.. node-red-contrib-geyserwala-connect
|
|
11
13
|
|
|
12
|
-
|
|
14
|
+
unlink:
|
|
15
|
+
rm -f .node-red/node_modules/node-red-contrib-geyserwala-connect
|
|
16
|
+
|
|
17
|
+
clean:
|
|
18
|
+
rm -rf .node-red
|
|
19
|
+
|
|
20
|
+
run:
|
|
13
21
|
cd .node-red && \
|
|
14
|
-
npx node-red
|
|
22
|
+
npx node-red -u .
|
|
15
23
|
|
|
16
24
|
login:
|
|
17
25
|
npm login
|
|
18
26
|
|
|
19
27
|
publish:
|
|
20
|
-
npm publish
|
|
28
|
+
npm publish --access public
|
package/README.md
CHANGED
|
@@ -3,14 +3,6 @@ Geyserwala Connect - Node-RED Integration <!-- omit in toc -->
|
|
|
3
3
|
|
|
4
4
|
***Automate your Geyserwala Connect from Node-RED***
|
|
5
5
|
|
|
6
|
-
## Installation
|
|
7
|
-
|
|
8
|
-
Install `node-red-contrib-geyserwala-connect` using [npm](https://www.npmjs.com/):
|
|
9
|
-
|
|
10
|
-
```bash
|
|
11
|
-
npm install --save node-red-contrib-geyserwala-connect
|
|
12
|
-
```
|
|
13
|
-
|
|
14
6
|
## Usage
|
|
15
7
|
|
|
16
8
|
Use these nodes to integrate with your Geyserwala Connect to automate your Geyserwise system from Node-RED.
|