-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
39 lines (34 loc) · 1.22 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
const Viera = require('viera.js');
module.exports = function (RED) {
function VieraReadNode(config) {
RED.nodes.createNode(this, config);
var node = this;
var tv = new Viera(config.host);
node.on('input', function (msg) {
var functionName = config.function || msg.function;
if (typeof (functionName) !== 'undefined') {
return tv[functionName]((data) => {
node.send({
payload: data
});
});
}
RED.log.error(`Function ${functionName} not defined.`);
});
}
RED.nodes.registerType("viera read", VieraReadNode);
function VieraWriteNode(config) {
RED.nodes.createNode(this, config);
var node = this;
var tv = new Viera(config.host);
node.on('input', function (msg) {
var functionName = config.function || msg.function;
if (typeof (functionName) !== 'undefined') {
return tv[functionName](msg.payload);
}
RED.log.error(`Function ${functionName} not defined.`);
});
}
RED.nodes.registerType("viera write", VieraWriteNode);
}