2
0

Initial commit

This commit is contained in:
Harald Rietman
2017-06-25 18:48:17 +02:00
commit 0b086db400
24 changed files with 2328 additions and 0 deletions
@@ -0,0 +1,16 @@
module.exports = function(RED) {
function RemoteServerNode(n) {
RED.nodes.createNode(this, n);
this.name = n.name;
this.group = n.group;
this.port = n.port;
this.udpv = n.udpv;
var node = this;
}
RED.nodes.registerType("xiaomi-gateway", RemoteServerNode);
}