Bump version to 0.1.11

This commit is contained in:
vvzvlad
2023-10-03 16:59:59 +03:00
parent e11f156961
commit 08f73c1b58
4 changed files with 253 additions and 7 deletions

31
thermostat-analyzer.html Normal file
View File

@ -0,0 +1,31 @@
<script type="text/javascript">
RED.nodes.registerType('c-thermostat-analyzer',{
category: 'Combined RN',
color: '#F3B567',
paletteLabel: 'Th-analyzer',
defaults: {
name: {value:""},
room: {value:"", required:true},
zone: {value:"", required:true}
},
inputs: 1,
outputs: 3,
outputLabels: ["heater","stats"],
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>