mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!--
 | |
|   Copyright 2013 Charalampos Doukas.
 | |
| 
 | |
|   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="HueNode">
 | |
|   <div class="form-row">
 | |
|      <label for="node-input-topic"><i class="icon-tasks"></i>Hue App Username:</label>
 | |
|     <input type="text" id="node-input-username" placeholder="username">
 | |
|   </div>
 | |
| 
 | |
|   <div class="form-row">
 | |
|      <label for="node-input-name"><i class="icon-tag"></i> Set Discovery Mode ON:</label>
 | |
|      <input type="checkbox" value="1" id="node-input-discovery_mode" placeholder="discovery_mode">
 | |
|   </div>
 | |
| 
 | |
|   <div class="form-row">
 | |
|     <label for="node-input-name"><i class="icon-tag"></i>Lamp ID:</label>
 | |
|     <input type="text" id="node-input-lamp_id" placeholder="lamp_id">
 | |
|   </div>
 | |
| 
 | |
|   <div class="form-row">
 | |
|     <label for="node-input-name"><i class="icon-tag"></i>Lamp Status:</label>
 | |
|     <select id="node-input-lamp_status" placeholder="lamp_status">
 | |
|     <option value="AUTO">AUTO</option>
 | |
|     <option value="ON">ON</option>
 | |
|     <option value="OFF">OFF</option>
 | |
|     </select>
 | |
|   </div>
 | |
| 
 | |
|   <div class="form-row">
 | |
|     <label for="node-input-name"><i class="icon-tag"></i> Name</label>
 | |
|     <input type="text" id="node-input-name" placeholder="Name">
 | |
|   </div>
 | |
| </script>
 | |
| 
 | |
| <!-- Next, some simple help text is provided for the node.                   -->
 | |
| <script type="text/x-red" data-help-name="HueNode">
 | |
|     <p>This node implements some basic functionality for accessing and managing a Philips Hue wireless Lamp system.</p>
 | |
|     <p>You can enable the discovery mode to get the IP address of the Hue bridge and a list with the connected Lamps.</p>
 | |
|     <p>You can enter the ID (1, 2, ...) of a Lamp and turn it ON or OFF. </p><p>By setting the status to AUTO, you can set the ON/OFF status as a message payload (e.g., msg.payload="ON") on the node input. Please note, in case you use both, the status selection overides the msg.payload!</p><p>Also, if you pass something like msg.payload="ALERT" the Lamp will flash once.</p>
 | |
| </script>
 | |
| 
 | |
| <!-- Finally, the node type is registered along with all of its properties   -->
 | |
| <script type="text/javascript">
 | |
|     RED.nodes.registerType('HueNode',{
 | |
|         category: 'advanced-input',      // the palette category
 | |
|         color:"#7B7B79",
 | |
|         defaults: {             // defines the editable properties of the node
 | |
|             name: {value:""},   //  along with default values.
 | |
|             username: {value:"", required:true},
 | |
|             discovery_mode: {value: "", required:false},
 | |
|             lamp_id: {value:"", required:false},
 | |
|             lamp_status:{}
 | |
|         },
 | |
|         inputs:1,                // set the number of inputs - only 0 or 1
 | |
|         outputs:1,               // set the number of outputs - 0 to n
 | |
|         icon: "philipshue.png",    // set the icon (held in public/icons)
 | |
|         label: function() {      // sets the default label contents
 | |
|             return this.name||this.topic||"HueNode";
 | |
|         },
 | |
|         labelStyle: function() { // sets the class to apply to the label
 | |
|             return this.name?"node_label_italic":"";
 | |
|         }
 | |
|     });
 | |
| </script>
 |