Read the statement by Michael Teeuw here.
Display different Roomtemperature on MagicMirror
-
@wishmaster270 i connected an other sensor and it doesnt showed me the error message, i will try the sketch tomorrow, the MMM_Temperature module is installed and works, but doesnt show any data, im gona try to fix it tomorrow
-
@wishmaster270 everything worked, you just forgot to add the “80” here:
i just set up a second sensor and cloned the module
if i go into my browser and type the two different IPs every sensor shows his own data, but the mirror displays 2times the data of sensor 2:
(sensor1: “test” | sensor2: “test2”)
how do i fix that? -
@Xilef Perfect. One step further.
You only need one instance of the module. So your config will look something like:
{ module: "MMM-Temperature", position: "middle_center", config: { sensors: [ { name: "test", script: "/bin/nc", args: "-w3 192.168.178.106 80" }, { name: "test2", script: "/bin/nc", args: "-w3 192.168.178.108 80" }, ] }, },
-
@wishmaster270 yes, it works
and in the future i can experiment with the MMM-ValuesByNotification Module to customize the module, right?
and a big thank you for the help and the quick reply
-
@Xilef Perfect.
Yes, the ValuesByNotification module is very powerful but the configuration can be get complex very quickly. You will need my other module CommandToNotification, too.