MMM-MinimalCOVID19/node_helper.js
2020-05-26 18:23:06 -04:00

15 lines
353 B
JavaScript

var NodeHelper = require("node_helper")
module.exports = NodeHelper.create({
start: function() {
this.countDown = 10000000
},
socketNotificationReceived: function(notification, payload) {
switch(notification) {
case "DO_YOUR_JOB":
this.sendSocketNotification("I_DID", (this.countDown - payload))
break
}
},
})