Read the statement by Michael Teeuw here.
Soccer Noob needs help!
-
@thedoorsfanatic
No, I haven’t.
It looks a lot like MMM-soccer (code-wise, because there are no screenshots available), with the difference that it still uses v1, which probably will not work.
And I do not see the possibility for team-logos.Do you use it ?
Does it work ? -
@evroom
No, I use MMM-SoccerLiveScore myself and got it timed with MMM-ModuleScheduler so I don’t get spoiled before watching Sportschau ;) -
Interesting.
I do not use MMM-ModuleScheduler.
Could you give an example on how to configure it for MMM-SoccerLiveScore ?
Do you schedule it to NOT see it during a specific period, like Saturday from 15:30 to 20:00 ? -
I think I got it.
Perhaps there is a better way, because I do not understand show, hidden and dim very good.
I thought it would be easy to say “show from to”, “hide from to” or “dim from to”, but like this it seems to work:{ module: 'MMM-SoccerLiveScore', position: 'top_right', //header: 'Live-Scores', classes: 'scheduler', config: { module_schedule: [ {from: '45 22 * * *', to: '30 19 * * 6', dimLevel: '10'}, // dim Saturday from 19:30 to 22:45 {from: '00 20 * * *', to: '30 13 * * 7', dimLevel: '10'}, // dim Sunday from 13:30 to 20:00 // {from: '00 20 * * *', to: '30 15 * * 6', dimLevel: '10'}, // dim Saturday from 15:30 to 20:00 ], leagues: [37,],
-
Nope, does not work.
An example would be nice. -
MMM-SoccerLiveScore worked out of the box!
But after a few hours the module stops.
Other modules keep going.
Any body know the solution?
Peter -
I do not have it running long enough to see this behaviour.
But, if you see this with
$ pm2 logs mm
0|mm | (node:22849) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
Do this (line 37):
$ vi /home/pi/MagicMirror/modules/MMM-SoccerLiveScore/node_helper.js //var image = new Buffer(body).toString('base64'); var image = Buffer.from(body).toString('base64'); $ pm2 restart mm
Then observe and pay attention to the pm2 logs.
-
Hi,
Just to say that MMM-SoccerLiveScore is running on my MM for 28 hours now.
@thedoorsfanatic
Still waiting for an example on hiding / dimming a module for a specific time on a specific day using MMM-SoccerLiveScore.
When you have time. -
@evroom
I am a beginner from Germany with bad English and I am not using dimLevel at all.
To show a module just at a certain time I put this in the config of a module:config: { module_schedule: {from: '30 6 * * 1-5', to: '45 7 * * 1-5' }, }
shows a module only from 6.30 h to 7.45 from Monday to Friday.
Just use this to figure out what range you need:
https://crontab.guru/#30-59_6___1-5 -
@thedoorsfanatic said in Soccer Noob needs help!:
module_schedule:
that only works for this one module…not… MMM-ModuleScheduler appears to support showing/dimming or hiding modules based on time of day (cron style schedule)