Bump version to 0.2.6

This commit is contained in:
vvzvlad 2023-10-04 17:41:53 +03:00
parent bc25c18a57
commit b6e6d58a67
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@vvzvlad/node-red-contrib-rn-combined-nodes",
"version": "0.2.5",
"version": "0.2.6",
"description": "",
"main": "index.js",
"keywords": [

View File

@ -40,8 +40,8 @@ module.exports = function(RED) {
function analyzer(msg) {
const status_window = 3 * 60 * 60 * 1000
const transitions_window = 3 * 60 * 60 * 1000
const status_window = 5 * 60 * 60 * 1000
const transitions_window = 5 * 60 * 60 * 1000
const max_temp_diff = 3

View File

@ -10,7 +10,7 @@
},
inputs: 1,
outputs: 2,
outputLabels: ["heater","stats"],
outputLabels: ["stats","heater"],
icon: "font-awesome/fa-snowflake-o",
label: function() {
return this.name||"C-Thermostat";
@ -25,7 +25,7 @@
</div>
<div class="form-row">
<label for="node-input-room"><i class="fa fa-tag"></i> Room name</label>
<input type="text" id="node-input-room" placeholder="Room name: gid_1">
<input type="text" id="node-input-room" placeholder="Room name: 1">
</div>
<div class="form-row">
<label for="node-input-zone"><i class="fa fa-tag"></i> Zone name</label>

View File

@ -195,7 +195,7 @@ module.exports = function(RED) {
msg_heater_status = null
}
node.send([msg_heater_status, msg_extended_stats]);
node.send([msg_extended_stats, msg_heater_status]);
});