mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
66 lines
2.6 KiB
JavaScript
66 lines
2.6 KiB
JavaScript
/**
|
|
* Copyright 2013 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.
|
|
**/
|
|
|
|
module.exports = function(RED) {
|
|
"use strict";
|
|
var util = require('util');
|
|
var fs = require('fs');
|
|
|
|
// check if /dev/ledborg exists - if not then don't even show the node.
|
|
if (!fs.existsSync("/dev/ledborg")) {
|
|
throw "Info : PiBorg hardware : LedBorg not found";
|
|
}
|
|
|
|
function LedBorgNode(n) {
|
|
RED.nodes.createNode(this,n);
|
|
var p1 = /^[0-2][0-2][0-2]$/
|
|
var p2 = /^\#[A-Fa-f0-9]{6}$/
|
|
var node = this;
|
|
|
|
this.on("input", function(msg) {
|
|
if (p1.test(msg.payload)) {
|
|
fs.writeFile('/dev/ledborg', msg.payload, function (err) {
|
|
if (err) { node.warn(msg.payload+" : No LedBorg found"); }
|
|
});
|
|
}
|
|
else if (p2.test(msg.payload)) {
|
|
var r = Math.floor(parseInt(msg.payload.slice(1,3),16)/88).toString();
|
|
var g = Math.floor(parseInt(msg.payload.slice(3,5),16)/88).toString();
|
|
var b = Math.floor(parseInt(msg.payload.slice(5),16)/88).toString();
|
|
fs.writeFile('/dev/ledborg', r+g+b, function (err) {
|
|
if (err) { node.warn(r+g+b+" : No LedBorg found"); }
|
|
});
|
|
}
|
|
else {
|
|
// you can add fancy colours by name here if you want...
|
|
// these are the @cheerlight ones.
|
|
var colors = {"red":"200","green":"020","blue":"002","cyan":"022","white":"222","pink":"201",
|
|
"warmwhite":"221","purple":"101","magenta":"202","yellow":"220","amber":"220","orange":"210","black":"000"}
|
|
if (msg.payload.toLowerCase() in colors) {
|
|
var c = colors[msg.payload.toLowerCase()];
|
|
fs.writeFile('/dev/ledborg', c, function (err) {
|
|
if (err) { node.warn(msg.payload+" : No LedBorg found"); }
|
|
});
|
|
}
|
|
else {
|
|
node.warn("Invalid LedBorg colour code");
|
|
}
|
|
}
|
|
});
|
|
}
|
|
RED.nodes.registerType("ledborg",LedBorgNode);
|
|
}
|