From dd2230f69f91311fb7ad4151c94d20705c310974 Mon Sep 17 00:00:00 2001 From: Marc Boehm Date: Thu, 3 Nov 2022 11:45:37 +0100 Subject: [PATCH] CAPAUT-270 Update metadata + examples --- examples/Simple Data Output.json | 42 ++++++++++++++++++++++++++++++++ package.json | 7 +++++- 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 examples/Simple Data Output.json diff --git a/examples/Simple Data Output.json b/examples/Simple Data Output.json new file mode 100644 index 0000000..9ce1b5e --- /dev/null +++ b/examples/Simple Data Output.json @@ -0,0 +1,42 @@ +[ + { + "id": "52d26c8444cb885c", + "type": "tab", + "label": "Systa Comfort II", + "disabled": false, + "info": "", + "env": [] + }, + { + "id": "9ffdf9347b3638b8", + "type": "systacomfort2", + "z": "52d26c8444cb885c", + "name": "", + "topicPrefix": "", + "listenPort": "", + "x": 740, + "y": 420, + "wires": [ + [ + "db57e8cee73f964a" + ] + ] + }, + { + "id": "db57e8cee73f964a", + "type": "debug", + "z": "52d26c8444cb885c", + "name": "Data Output", + "active": true, + "tosidebar": true, + "console": false, + "tostatus": false, + "complete": "true", + "targetType": "full", + "statusVal": "", + "statusType": "auto", + "x": 1250, + "y": 420, + "wires": [] + } +] \ No newline at end of file diff --git a/package.json b/package.json index 00e2f3e..36fea3e 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,9 @@ { "name": "@captica/node-red-systacomfort2", - "version": "1.0.0", + "version": "1.0.1", "description": "Node-RED node to connect and read data from SystaComfort II heating/solar systems", "author": "Marc Böhm (marc.boehm@captica.de)", + "licence": "MIT", "homepage": "http://www.captica.de", "repository": { "type": "git", @@ -15,10 +16,14 @@ "node-red" ], "node-red": { + "version": ">=2.0.0", "nodes": { "systacomfort2": "systacomfort2/systacomfort2.js" } }, + "engines": { + "node": ">=14.0.0" + }, "scripts": { "test": "nyc mocha" },