Read the statement by Michael Teeuw here.
Posts
-
RE: Mobile app (bachelor thesis)
There is a preinstall script (which gets executed right before npm install) which reorders the modules by region, but the display module order keeps the same, to enable easy reordering in the app.
Formatting of the config will reoccur in the next version.
The only possible way to reshow the qr-code is by deleting the mobile.json file (this will make all pairings obsolete) or you scan the qr image in the module directory.
About 10 iOS users have installed the app, so if you didn’t receive a mail by apple you can send me your mail again via pm and i will add you to the beta testing.
Please use github issues as it is the better tracker and overview for others with the same issues as you have done already
-
RE: NFL Score Module
@in_a_days I suggest to move this into the development section and a new thread for nba
Help: you can run the python script in from inside the node_helper and read the output, then send the data to your module with a socket notification
-
RE: Help customising my mirror
@Mykle1 that answer is not correct, module config options have to be in the object config
module: 'clock', position: 'top_left', config: { displayType: 'digital' } -
RE: MMM-NBA / NBA Scores Module
in the python script you will need this function to return a json object to your node helper https://github.com/paviro/MMM-Facial-Recognition/blob/master/facerecognition/facerecognition.py#L25
in the node_helper you would need this function https://github.com/paviro/MMM-Facial-Recognition/blob/master/node_helper.js#L9
what variables are unclear to you, name them and we can try to explain them
-
RE: MMM-Soccer - Standings, Schedules and Top Scorers
@ostfilinchen i will check it in 2-3 weeks after im done with my bachelor stuff. Thank you
-
RE: sample config and clock
@emos you forgot an , behind the position
{ module: 'clock', position: 'top_left', config: { displaySeconds: false } } -
RE: One-line switch to enable / disable modules
@sebi76 booleans do not have quotes. Try without
-
RE: Mobile app (bachelor thesis)
problem solved after adding ip to config.js
-
RE: MMM-MLB
@jimmrr i guess you use the midori browser, which cant handle es6 and this module makes use of es6 features
-
RE: sample config and clock
@emos that’s correct it’s like writing a list you seperate them by comma except the last item
-
RE: Motion Detector
@trividar @cowboysdude paviro is also using the same code lines in his pir sensor module and a user had similar issues, maybe his solution also work for you
https://forum.magicmirror.builders/topic/208/pir-sensor-put-your-mirror-to-sleep-if-not-used/43
https://forum.magicmirror.builders/topic/208/pir-sensor-put-your-mirror-to-sleep-if-not-used/64 -
RE: Mobile app (bachelor thesis)
Spoiler: I want to integrate push notifications which will do exactly this. But that will be after my thesis.
-
RE: MMM-Formula1 - Formula 1 Standings
@wizz i guess you have the modules on the right side of your mirror thats most likely why your text is aligned right. you can change that by adding the class
align-leftto the config or add a css rule in custom.css to do so.to add some spacing to the table you could add something like
.MMM-Formula1 table { border-spacing: 10px 0; border-collapse: separate; }to your custom.css
-
RE: Calendar Heading Changes
@ooom416354 you can also add
<br />to force a line break where you want -
RE: Motion Detector
@alexyak the logs from @trividar show only state hdmi on never hdmi off, so maybe the check for on off is not correct in the module, as an idea create a dev branch where you don’t check with tvservice -s, just set a variable hdmi true/false after you running a command and starting with true in the start method of the nodehelper and let them checkout this branch
-
RE: MMM-NBA / NBA Scores Module
@in_a_days at least there is a module for the standings https://forum.magicmirror.builders/topic/1479/mmm-nbaranking-nba-standings
-
RE: MMM-Soccer - Standings, Schedules and Top Scorers
@Babene1 can you pls provide the config so i can investigate?
-
RE: Modules not loading - Noob Fail
@bminer1
pm2 logsfor server logs andnpm start devfor client logs