@geschild
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);
}
},