node-red-contrib-rn-combine.../thermostat.js
2023-10-02 22:55:07 +03:00

12 lines
334 B
JavaScript

module.exports = function(RED) {
function thermostat(config) {
RED.nodes.createNode(this,config);
var node = this;
node.on('input', function(msg) {
msg.payload = msg.payload.toLowerCase();
node.send(msg);
});
}
RED.nodes.registerType("c-thermostat", thermostat );
}