UNPKG

node-red-contrib-msl

Version:

A node-red module to simplify the access of msl4 channel data.

8 lines 259 B
module.exports = function(RED) { function SetMSLDevice(config) { RED.nodes.createNode(this,config); this.hostname = config.hostname; this.device = config.device; } RED.nodes.registerType("msl-device-config",SetMSLDevice); }