mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
  Copyright 2014 Sean Bedford
 | 
						|
 | 
						|
  Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
  you may not use this file except in compliance with the License.
 | 
						|
  You may obtain a copy of the License at
 | 
						|
 | 
						|
  http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
  Unless required by applicable law or agreed to in writing, software
 | 
						|
  distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
  See the License for the specific language governing permissions and
 | 
						|
  limitations under the License.
 | 
						|
-->
 | 
						|
 | 
						|
<script type="text/x-red" data-template-name="heatmiser-in">
 | 
						|
    <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-uuid"><i class="fa fa-tag"></i> IP Address</label>
 | 
						|
        <input type="text" id="node-input-ip" placeholder="192.168.0.1">
 | 
						|
    </div>
 | 
						|
    <div class="form-row">
 | 
						|
        <label for="node-input-name"><i class="fa fa-tag"></i> PIN</label>
 | 
						|
        <input type="text" id="node-input-pin" placeholder="1234">
 | 
						|
    </div>
 | 
						|
    <div class="form-tips">Expects a msg.payload with a JSON object that contains settings for the Heatmiser thermostat</div>
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/x-red" data-help-name="heatmiser-in">
 | 
						|
    <p>Heatmiser Input node.</p>
 | 
						|
    <p>Expects a msg.payload with a JSON object that contains settings for the Heatmiser thermostat</p>
 | 
						|
    <p>msg.payload can currently be either a heating boost option, or a run mode, as below:</p>
 | 
						|
    <h3>Heating boost</h3>
 | 
						|
    <p><pre>{heating: {target: TARGET_TEMPERATURE, hold: MINUTES_TO_STAY_ON_FOR}}</pre></p>
 | 
						|
    <h3>Run mode</h3>
 | 
						|
    <p><pre>{runmode:"frost" OR "heating"}</pre></p
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/javascript">
 | 
						|
    RED.nodes.registerType('heatmiser-in',{
 | 
						|
        category: 'advanced-function',
 | 
						|
        color:"GoldenRod",
 | 
						|
        defaults: {
 | 
						|
            name: {value:""},
 | 
						|
            ip: {value:""},
 | 
						|
            pin: {value:""}
 | 
						|
        },
 | 
						|
        inputs:1,
 | 
						|
        outputs:0,
 | 
						|
        icon: "timer.png",
 | 
						|
        label: function() {
 | 
						|
            return this.name||"heatmiser-in";
 | 
						|
        },
 | 
						|
        labelStyle: function() {
 | 
						|
            return this.name?"node_label_italic":"";
 | 
						|
        }
 | 
						|
    });
 | 
						|
</script>
 |