Read the statement by Michael Teeuw here.

Posts
-
RE: MMM-syslog
-
RE: Touchscreen instead of simple monitor behind MagicMirror?
@binderth there a several voice modules and a gesture module just use the forum search or browse through the showcase
-
RE: Limit Sonos module to only show a specific speaker
@dinkybluebug245 can’t test this, because I don’t have sonos speakers, but this would be an quick an ugly solution
$.each(data, function (i, item) { if(item.coordinator.roomName === 'Kitchen'){ var room = item.coordinator.roomName; var state = item.coordinator.state.zoneState; var artist = item.coordinator.state.currentTrack.artist; var track = item.coordinator.state.currentTrack.title; var cover = item.coordinator.state.currentTrack.absoluteAlbumArtURI; var streamInfo = item.coordinator.state.currentTrack.streamInfo; if(item.members.length > 1){ room = ''; $.each(item.members, function (j, member) { room += member.roomName + ', '; }); room = room.slice(0, -2); } text += this.renderRoom(state, artist, track, cover, room); } }.bind(this));
personally i would fork the repository add a config option exclude: [‘LivingRoom’, ‘Bathroom’] etc. to have normal behaviour for all people updating the module without need to change the config to get their familiar result. and then i would check
$.each(data, (i, item) => { if(this.config.exclude.indexOf(item.coordinator.roomName) === -1){
and then submit a pull request
-
RE: MMM-Soccer - Standings, Schedules and Top Scorers
@MichMich I was thinking about doing this, but couldn’t find a proper free api yet :(
-
RE: cant get magicmirror to show up on screen
i did it like this on several pi’s now and never had issues https://forum.magicmirror.builders/topic/236/complete-setup-tutorial
-
RE: MMM-syslog
@PointPubMedia It should be possible to manipulate the socket connection to redirect it to your main mirror so it uses the node_helper there. So all slaves would get the data from the main node_helper. Will be busy with other modules the next days, just give me a note when you’re closer to your first slave and then we will see what we can achieve.
-
RE: Memory effect with MM2
@schlachtkreuzer6 you could create a class and add this to the body where the margin is different than the basic 60px and toggle the class to the body every 6 hours or so
-
RE: How to receive push notifications from another server?
@paphko said in How to receive push notifications from another server?:
On the openhab side, I can easily add some arbitrary java code, for example to perform some http requests or to open and communicate via a socket connection to a specific IP.
in a module i forked from paviro, there is a functionality where you can make http requests to the module https://github.com/fewieden/MMM-syslog/blob/master/node_helper.js#L16
-
RE: MMM-Soccer - Standings, Schedules and Top Scorers
i just published an update, which allows to focus_on also TOP, BOTTOM and support for coming features, you’re already able to set this per league
-
RE: No Data in Module MMM-Formula1
@ostfilinchen I’m guessing you have
Error: Cannot find module 'ical-generator'
in your console, if so then do the followingcd ~/MagicMirror/modules/MMM-Formula1
and then typenpm install