UNPKG

@moddable-node-red/mcu_restart

Version:
11 lines (9 loc) 235 B
module.exports = function(RED) { function RestartNode(config) { RED.nodes.createNode(this,config); this.on('input', (msg, send, done) => { done(); }); } RED.nodes.registerType("mcu_restart", RestartNode); }