node-red-contrib-rn-combine.../thermostat-analyzer.html
2023-10-04 22:16:43 +03:00

37 lines
1.3 KiB
HTML

<script type="text/javascript">
RED.nodes.registerType('c-thermostat-analyzer',{
category: 'Combined RN',
color: '#F3B567',
paletteLabel: 'Th-analyzer',
defaults: {
name: {value:""}
},
inputs: 1,
outputs: 3,
outputLabels: ["mqtt_debug","state_text","current_temp"],
icon: "font-awesome/fa-snowflake-o",
label: function() {
return this.name||"Th-analyzer";
}
});
</script>
<script type="text/html" data-template-name="c-thermostat-analyzer">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<div class="form-row">
<label for="node-input-status_window"><i class="fa fa-tag"></i> Status window (in hours)</label>
<input type="text" id="node-input-status_window" placeholder="4">
</div>
<div class="form-row">
<label for="node-input-transitions_window"><i class="fa fa-tag"></i> Transitions window (in hours)</label>
<input type="text" id="node-input-transitions_window" placeholder="5">
</div>
</script>
<script type="text/html" data-help-name="c-thermostat-analyzer">
<p>c-thermostat/p>
</script>