UNPKG

node-red-contrib-gree-hvac

Version:

A Node-RED integration for controlling Gree smart air conditioners

13 lines (10 loc) 273 B
module.exports = function (RED) { /** * @param config */ function GreeHvacConfigNode(config) { RED.nodes.createNode(this, config); this.host = config.host; } RED.nodes.registerType('gree-hvac-config', GreeHvacConfigNode, {}); };