Bump version to 0.1.11
This commit is contained in:
31
thermostat-analyzer.html
Normal file
31
thermostat-analyzer.html
Normal 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>
|
||||
|
Reference in New Issue
Block a user