Read the statement by Michael Teeuw here.
How to switch off fadeOut-fadeIn in MMM-ioBroker
-
When the presetted interval is up, the MMM-ioBroker fadesOut and then fades in the actual content of the datapoint. How to switch off this behavior ?
Nach Ablauf des voreingestellten Intervalls verschwindet der Text des MMM-ioBroker langsam vom Bildschirm und erscheint dann langsamm mit den aktuellen Daten des DP zurück. Wie kann man dieses Verhalten abschalten ?
-
Hab die Lösung selber gefunden (stolz). In der MMM-ioBroker.js :
// Override socket notification handler.
// Module notifications from node_helper
socketNotificationReceived: function (notification, payload) {
if (notification === ‘DATARECEIVED’) {
this.values = payload;
this.updateDom(0); <------ war 2000, mit 0 ist das faden weg.
this.scheduleUpdate(this.config.updateInterval);
}
},