UNPKG

node-red-contrib-switchbot-devices

Version:

Simple node to get list of Switchbot devices and their status with Node-RED

10 lines 232 B
module.exports = function(RED) { function GetTokenNode(n) { RED.nodes.createNode(this,n); } RED.nodes.registerType("switchbot-token",GetTokenNode, { credentials: { token: {type: 'password'} } }); }