UNPKG

node-red-contrib-xiaomi-devices

Version:

A set of nodes to control some of the popular Xiaomi sensors which are connected to the Xiaomi Gateway.

15 lines (10 loc) 325 B
module.exports = function(RED) { function XiaomiConfiguratorNode(n) { RED.nodes.createNode(this, n); this.name = n.name; this.deviceList = n.deviceList || []; this.key = n.key; var node = this; } RED.nodes.registerType("xiaomi-configurator", XiaomiConfiguratorNode); }