UNPKG

node-red-contrib-etekcity-smartplug

Version:

etekcity smartplug

9 lines (8 loc) 243 B
module.exports = function(RED) { function VesyncAccount(n) { RED.nodes.createNode(this,n); this.username = n.username; this.password = n.password; } RED.nodes.registerType('vesync-account',VesyncAccount); }