Read the statement by Michael Teeuw here.
MMM-Pages
-
Tried searching here and couldn’t find anyone with a similar issue. I am trying to get a specific module, MMM-MyCommute, to display only on page 1 of of my MagicMirror. No matter what I do it displays on page 0 as well. I’ve attached my code below. Any insight would be greatly appreciated
{ module: "MMM-pages", config: { timings: { default: 0, // rotate every 5 seconds 0: 0, // page 0 rotates every 20 seconds 1: 20000, }, modules: [ ["MMM-CalendarExt3"], // page 0 ["MMM-MyCommute"], // page 1 ], fixed: [ // modules that are always shown "clock", "MMM-OneCallWeather", "MMM-page-indicator" ], } } ] }; module.exports = config;
-
@MrPinner141 said in MMM-Pages:
timings: { default: 0, // rotate every 5 seconds 0: 0, // page 0 rotates every 20 seconds 1: 20000, },
To understand your setting better:
- What do you want to achieve with 0 ms for
0
anddefault
? - Does the behavior also occur if you enter values above 0 at
0
anddefault
?
- What do you want to achieve with 0 ms for
-
Thanks for the advice, when I did increase the value above 0 it does function as intended! Thank you.
I kept it at 0 so that I essentially would have a “homepage” and click the another page’s button, from MMM-page-indicator, to go there and after a short amount of time it comes back to the “homepage”
I’m sure I can find another work around to achieve that, but if you have any advice that would be great!
-
@MrPinner141 I can’t take a closer look at it right now, but I have an idea for a workaround: But it only works if MM restarts regularly. Some users shut MM down at night and start it up again in the morning. Then you could set the timer for the homepage to over 24 hours, this should have the desired effect that the homepage is always visible.
-
@MrPinner141 why don’t you use the Homepage feature?
-
-
@KristjanESPERANTO said in MMM-Pages:
I can’t take a closer look at it right now, but I have an idea for a workaround: But it only works if MM restarts regularly. Some users shut MM down at night and start it up again in the morning. https://eldfall-chronicles.com/en-si/pages/dungeoncrawl Then you could set the timer for the homepage to over 24 hours, https://www.viberate.com/ this should have the desired effect that the homepage is always visible.
That’s a smart workaround