87 lines
3.1 KiB
JavaScript
87 lines
3.1 KiB
JavaScript
module.exports = function(RED) {
|
|
"use strict";
|
|
var mustache = require("mustache");
|
|
|
|
function XiaomiMotionNode(config) {
|
|
RED.nodes.createNode(this, config);
|
|
this.gateway = RED.nodes.getNode(config.gateway);
|
|
this.sid = config.sid;
|
|
this.output = config.output;
|
|
this.motionmsg = config.motionmsg;
|
|
this.nomotionmsg = config.nomotionmsg;
|
|
|
|
var node = this;
|
|
var state = "";
|
|
|
|
// node.status({fill:"yellow", shape:"dot", text:"unknown state"});
|
|
node.status({fill:"grey",shape:"ring",text:"battery"});
|
|
|
|
if (this.gateway) {
|
|
node.on('input', function(msg) {
|
|
// var payload = JSON.parse(msg);
|
|
var payload = msg.payload;
|
|
|
|
if (payload.sid == node.sid && payload.model == "motion") {
|
|
var data = JSON.parse(payload.data)
|
|
|
|
// if (data.status && data.status == "open") {
|
|
// node.status({fill:"green", shape:"dot", text:"open"});
|
|
// state = "open";
|
|
// } else if (data.status && data.status == "close") {
|
|
// node.status({fill:"red", shape:"dot", text:"closed"});
|
|
// state = "closed";
|
|
// }
|
|
|
|
if (data.voltage) {
|
|
if (data.voltage < 2500) {
|
|
node.status({fill:"red",shape:"dot",text:"battery"});
|
|
} else if (data.voltage < 2900) {
|
|
node.status({fill:"yellow",shape:"dot",text:"battery"});
|
|
} else {
|
|
node.status({fill:"green",shape:"dot",text:"battery"});
|
|
}
|
|
}
|
|
|
|
|
|
if (node.output == "0") {
|
|
msg.payload = payload;
|
|
node.send([msg]);
|
|
} else if (node.output == "1") {
|
|
var status = null;
|
|
var duration = null;
|
|
|
|
if (data.status) {
|
|
status = {"payload": data.status};
|
|
}
|
|
if (data.no_motion) {
|
|
status = {"payload": "no_motion"};
|
|
duration = {"payload": {"no_motion": data.no_motion}};
|
|
}
|
|
|
|
node.send([[status], [duration]]);
|
|
} else if (node.output == "2") {
|
|
var status = null;
|
|
|
|
if (data.status === 'motion') {
|
|
status = {"payload": mustache.render(node.motionmsg, data)}
|
|
} else {
|
|
status = {"payload": mustache.render(node.nomotionmsg, data)}
|
|
}
|
|
node.send([status]);
|
|
}
|
|
}
|
|
});
|
|
|
|
node.on("close", function() {
|
|
});
|
|
|
|
} else {
|
|
// no gateway configured
|
|
}
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("xiaomi-motion", XiaomiMotionNode);
|
|
|
|
}
|