2023-10-03 16:59:59 +03:00
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('c-thermostat-analyzer',{
|
|
|
|
category: 'Combined RN',
|
|
|
|
color: '#F3B567',
|
|
|
|
paletteLabel: 'Th-analyzer',
|
|
|
|
defaults: {
|
2023-10-03 17:15:20 +03:00
|
|
|
name: {value:""}
|
2023-10-03 16:59:59 +03:00
|
|
|
},
|
|
|
|
inputs: 1,
|
|
|
|
outputs: 3,
|
2023-10-03 17:15:20 +03:00
|
|
|
outputLabels: ["mqtt_debug","state_text","current_temp"],
|
2023-10-03 16:59:59 +03:00
|
|
|
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>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/html" data-help-name="c-thermostat-analyzer">
|
|
|
|
<p>c-thermostat/p>
|
|
|
|
</script>
|
|
|
|
|