A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
System temperature : fetching...
-
It does this for hours, I never get the temperature. How can I contact the author?
-
Contact michmich he created the magic mirror.
-
-
@sebastiensaucier That’s weird … do you see any weird messages in the terminal?
-
No just the normal text:
-
Just a thought, but could CPU load have anything to do with it?
-
It’s around 10% of usage. So I don’t think it can cause the problem.
-
@sebastiensaucier could you modify the node_helper
change:
self.sendSocketNotification('TEMPERATURE', stdout.replace('temp=','').replace('\'','\°'));
to:
var temperature = stdout.replace('temp=','').replace('\'','\°'); console.log('Temperature: ' + temperature); self.sendSocketNotification('TEMPERATURE', temperature);
And see if the temperature is logged?
-
Nothing in the console. Where can I see the logs?
Also, I tried to erease all and do all the readme again, but nothing changed.
-
You can see the logs inside your terminal session. If you use
pm2
executepm2 logs mm
to see the log! :)