@thingwala/node-red-contrib-geyserwala-connect 0.0.3 → 0.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/CHANGELOG +19 -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/package.json +2 -2
- package/src/nodes/geyserwala-nodes.html +8 -7
- package/src/nodes/geyserwala-nodes.js +2 -2
package/CHANGELOG
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Change Log - Geyserwala Connect Node-RED plugin
|
|
2
|
+
|
|
3
|
+
## [0.0.4] - 2023-12-05
|
|
4
|
+
|
|
5
|
+
Migrate to persistent latch signals, with programable hold time
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- element-disable signal, accepts integer of number or seconds to latch, or true (defaults to 24 hours). Zero/false will clear.
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- naming to geyserwala-connect-...
|
|
12
|
+
- element-enable signal: accepts integer of number of seconds to latch, or true (defaults to 24 hours). Zero/false will clear.
|
|
13
|
+
|
|
14
|
+
### Removed
|
|
15
|
+
- lowpower-enable: replaced by element-disable.
|
|
16
|
+
|
|
17
|
+
## [0.0.3] - 2023-09-01
|
|
18
|
+
|
|
19
|
+
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.
|