mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
  Copyright 2014 IBM Corp.
 | 
						|
 | 
						|
  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="rpi-liter">
 | 
						|
    <div class="form-row">
 | 
						|
        <label for="node-input-pin"><i class="fa fa-asterisk"></i> Mode</label>
 | 
						|
        <select type="text" id="node-input-pin" style="width: 350px;">
 | 
						|
            <option value="pi-liter">0-255 : one bit per led</option>
 | 
						|
            <option value="meter">0-8 : turns on led indicated - needle</option>
 | 
						|
            <option value="bar">0-8 : turns on leds up to value - bar</option>
 | 
						|
            <option value="pin">object : select led and set state</option>
 | 
						|
            <option value="all">0/1 : turn off/on ALL leds</option>
 | 
						|
         </select>
 | 
						|
    </div>
 | 
						|
    <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-tips">See the Info panel for descriptions of the different modes.</div>
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/x-red" data-help-name="rpi-liter">
 | 
						|
    <p>Raspberry Pi-LITEr output node. The Pi-LITEr must be fitted.</p>
 | 
						|
    <p>Operates in one of 5 different modes :</p>
 | 
						|
    <ul>
 | 
						|
    <li>Byte Mode - expects a value between 0 and 255, and each of the LEDs represent 1 bit.</li>
 | 
						|
    <li>Meter Mode - expects a value between 0 and 8, the led lit corresponds to the input value - like a meter needle.</li>
 | 
						|
    <li>Bar Mode - expects a value between 0 and 8, similar to meter - but all the leds up to the value are turned on - like a mini bar chart.</li>
 | 
						|
    <li>Object Mode - expects a object specifying the LED and state eg. <code>{led:3,state:0}</code> to set LED3 off.</li>
 | 
						|
    <li>All LEDs Mode - expects a 1 or 0 - turns on and off ALL the LEDs.</li>
 | 
						|
    </ul>
 | 
						|
    <p>Requires the WiringPi gpio command in order to work.</p>
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/javascript">
 | 
						|
    RED.nodes.registerType('rpi-liter',{
 | 
						|
        category: 'advanced-output',
 | 
						|
        color:"#c6dbef",
 | 
						|
        defaults: {
 | 
						|
            name: { value:"" },
 | 
						|
            pin: { value:"" }
 | 
						|
        },
 | 
						|
        inputs:1,
 | 
						|
        outputs:0,
 | 
						|
        icon: "rpi.png",
 | 
						|
        align: "right",
 | 
						|
        label: function() {
 | 
						|
            return this.name||"Pi-LITEr";
 | 
						|
        },
 | 
						|
        labelStyle: function() {
 | 
						|
            return this.name?"node_label_italic":"";
 | 
						|
        }
 | 
						|
    });
 | 
						|
</script>
 |