I think this should work; add the following at the bottom of the start
function in MMM-EyeCandy.js
:
start: function () {
...
// ADDED: Schedule update timer
setInterval(function() {
self.updateDom(self.config.fadeSpeed || 0); // use config.fadeSpeed or revert to zero
}, this.config.updateInterval);
}, // this was line 83