UNPKG

@fw-systeme/node-red-msl

Version:

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

9 lines 305 B
module.exports = function(RED) { function MSLConfigNode(config) { RED.nodes.createNode(this,config); this.device = config.device; this.subdevice = config.subdevice; this.channels = config.channels; } RED.nodes.registerType("msl-channel-config",MSLConfigNode); }