UNPKG
node-red-contrib-switchbot-devices
Version:
latest (1.0.1-1)
1.0.1-1
1.0.1-0
1.0.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.2-1
0.0.2-0
0.0.1
0.0.1-3
0.0.1-2
Simple node to get list of Switchbot devices and their status with Node-RED
node-red-contrib-switchbot-devices
/
source
/
switchbot-token.js
10 lines
•
232 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
module.exports =
function
(
RED
)
{
function
GetTokenNode
(
n
)
{ RED.nodes.
createNode
(this,n); } RED.nodes.
registerType
(
"switchbot-token"
,GetTokenNode, {
credentials
: {
token
: {
type
:
'password'
} } }); }