Bump version to 0.2.6
This commit is contained in:
parent
bc25c18a57
commit
b6e6d58a67
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vvzvlad/node-red-contrib-rn-combined-nodes",
|
"name": "@vvzvlad/node-red-contrib-rn-combined-nodes",
|
||||||
"version": "0.2.5",
|
"version": "0.2.6",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -40,8 +40,8 @@ module.exports = function(RED) {
|
|||||||
|
|
||||||
|
|
||||||
function analyzer(msg) {
|
function analyzer(msg) {
|
||||||
const status_window = 3 * 60 * 60 * 1000
|
const status_window = 5 * 60 * 60 * 1000
|
||||||
const transitions_window = 3 * 60 * 60 * 1000
|
const transitions_window = 5 * 60 * 60 * 1000
|
||||||
const max_temp_diff = 3
|
const max_temp_diff = 3
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
},
|
},
|
||||||
inputs: 1,
|
inputs: 1,
|
||||||
outputs: 2,
|
outputs: 2,
|
||||||
outputLabels: ["heater","stats"],
|
outputLabels: ["stats","heater"],
|
||||||
icon: "font-awesome/fa-snowflake-o",
|
icon: "font-awesome/fa-snowflake-o",
|
||||||
label: function() {
|
label: function() {
|
||||||
return this.name||"C-Thermostat";
|
return this.name||"C-Thermostat";
|
||||||
@ -25,7 +25,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-room"><i class="fa fa-tag"></i> Room name</label>
|
<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>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-zone"><i class="fa fa-tag"></i> Zone name</label>
|
<label for="node-input-zone"><i class="fa fa-tag"></i> Zone name</label>
|
||||||
|
@ -195,7 +195,7 @@ module.exports = function(RED) {
|
|||||||
msg_heater_status = null
|
msg_heater_status = null
|
||||||
}
|
}
|
||||||
|
|
||||||
node.send([msg_heater_status, msg_extended_stats]);
|
node.send([msg_extended_stats, msg_heater_status]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user