MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MrPinner141
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    M
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Groups 0

    MrPinner141

    @MrPinner141

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    MrPinner141 Unfollow Follow

    Latest posts made by MrPinner141

    • RE: MMM-Pages

      @KristjanESPERANTO

      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!

      posted in Troubleshooting
      M
      MrPinner141
    • 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;
      
      posted in Troubleshooting
      M
      MrPinner141