mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	Update blink1 node so green is brighter
This commit is contained in:
		@@ -28,6 +28,7 @@
 | 
			
		||||
<script type="text/x-red" data-help-name="blink1">
 | 
			
		||||
    <p>ThingM Blink1 output node.</p>
 | 
			
		||||
    <p>Expects a msg.payload with either a three part csv string of r,g,b or a hex colour #rrggbb</p>
 | 
			
		||||
    <p>Also accepts cheerlight colour names.</p>
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<script type="text/javascript">
 | 
			
		||||
 
 | 
			
		||||
@@ -51,7 +51,7 @@ module.exports = function(RED) {
 | 
			
		||||
                    else {
 | 
			
		||||
                        // you can add fancy colours by name here if you want...
 | 
			
		||||
                        // these are the @cheerlight ones.
 | 
			
		||||
                        var colors = {"red":"#FF0000","green":"#008000","blue":"#0000FF","cyan":"#00FFFF","white":"#FFFFFF","warmwhite":"#FDF5E6",
 | 
			
		||||
                        var colors = {"red":"#FF0000","green":"#00FF00","blue":"#0000FF","cyan":"#00FFFF","white":"#FFFFFF","warmwhite":"#FDF5E6",
 | 
			
		||||
                            "purple":"#800080","magenta":"#FF00FF","yellow":"#FFFF00","amber":"#FFD200","orange":"#FFA500","black":"#000000"}
 | 
			
		||||
                        if (msg.payload.toLowerCase() in colors) {
 | 
			
		||||
                            var c = colors[msg.payload.toLowerCase()];
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
    "name"          : "node-red-node-blink1",
 | 
			
		||||
    "version"       : "0.0.1",
 | 
			
		||||
    "version"       : "0.0.2",
 | 
			
		||||
    "description"   : "A Node-RED node to control a Thingm Blink(1)",
 | 
			
		||||
    "dependencies"  : {
 | 
			
		||||
        "node-blink1"   : "0.1.2"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user