UNPKG

node-red-contrib-vib-smart-valve

Version:
15 lines (12 loc) 400 B
module.exports = function (RED) { function SmartValveSettings(n) { RED.nodes.createNode(this, n) this.name = n.name this.mqttHost = n.mqttHost this.mqttPort = n.mqttPort this.mqttUser = n.mqttUser this.mqttPassword = n.mqttPassword this.mqttRootPath = n.mqttRootPath } RED.nodes.registerType('smart-valve-settings', SmartValveSettings) }