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

    msimon360

    @msimon360

    3
    Reputation
    1
    Profile views
    14
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    msimon360 Unfollow Follow

    Best posts made by msimon360

    • MMM-Jast - Loading and no data SOLVED

      I installed MMM-Jast v2.9.5 on a fresh Install of MagicMirror2 on my Raspberry Pi 5.
      All I was getting was the word “Loading”. The problem was fixed when I downgraded yahoo-finance2 from 2.14.0 to 2.11.3 as in the Jast package.json.

      cd ~/MagicMirror/modules/MMM-Jast
      rm -rf node_modules package-lock.json
      npm install yahoo-finance2@2.11.3 --save-exact

      posted in Troubleshooting
      msimon360M
      msimon360
    • World Cup page

      Re: Fifa World Cup overview
      I started looking into ways to display the 2026 World Cup and found this to work great. I used {MMM-WebView} (https://github.com/Iketaki/MMM-WebView ) and loaded native-stats.org [World Cup page](link url) (https://native-stats.org/competition/WC/) page.

      posted in Requests
      msimon360M
      msimon360
    • RE: MMM-Carousel extra text

      I found the simple fix. I removed the position option from the Carousel module in the config.js file. Doh! I thought it said required but it said “NOT Required”.

      posted in Troubleshooting
      msimon360M
      msimon360

    Latest posts made by msimon360

    • World Cup page

      Re: Fifa World Cup overview
      I started looking into ways to display the 2026 World Cup and found this to work great. I used {MMM-WebView} (https://github.com/Iketaki/MMM-WebView ) and loaded native-stats.org [World Cup page](link url) (https://native-stats.org/competition/WC/) page.

      posted in Requests
      msimon360M
      msimon360
    • RE: New Module MMM-PWSWeather

      @sdetweil I have a weather provider working now. When I try to use $SECRET_PWS_API_KEY in my config.js it doesn’t work. I export the var in my .bashrc and I am using pm2 to start mm.

      posted in Showcase
      msimon360M
      msimon360
    • RE: New Module MMM-PWSWeather

      @sdetweil This is great. Is it only for weather? It would be cool if all modules could be like this. You could define data providers and then data displays. Maybe in the modules directory or another directory define a pair with a unique name to work like a module does now. That way you could define providerA with displayA as module1 and providerB with displayA as module2. This would end copying modules and renaming them do display different data in the same way.

      posted in Showcase
      msimon360M
      msimon360
    • RE: New Module MMM-PWSWeather

      @sdetweil I didn’t know about themes for weather. I will separate my module into a provider and a theme. I use pages with my mirror and want to display both weather from the default provider and from my personal weather station. How best to go about this?

      posted in Showcase
      msimon360M
      msimon360
    • New Module MMM-PWSWeather

      I have published a new module to GitHub MMM-PWSWeather](https://github.com/msimon360/MMM-PWSWeather) to display Weather Data from WeatherUnderground. You can use this to display your own personal weather station or with a subscription any available station. This is my first module, I don’t know how to get it added to the 3rd-Party-Modules page.

      posted in Showcase module weather new
      msimon360M
      msimon360
    • RE: MMM-BackgroundSlideShow cutting off top of pics

      @sdetweil I didn’t get that by pages you ment the module pages in place of Carousel. I tried your pages module and it is displaying only the first photo. Here is my new config.js section.
      module: “MMM-ImagesPhotos”,
      position: “fullscreen_below”,
      config: {
      opacity: 0.9,
      animationSpeed: 5000,
      updateInterval: 15000,
      backgroundColor: ‘grey’, // not used if fill is true
      fill: true, // fill around image with blurred copy of image
      blur: 10, // only used if fill is true
      sequential: false // process the image list randomly
      }
      },
      {
      module: “MMM-pages”,
      config: {
      rotationTime: 1000 * 10, // rotate every 20 seconds
      modules: [
      [“clock”], // page 1
      [“MMM-ImagesPhotos”], // page 2
      ],
      fixed: [ // modules that are always shown
      “MMM-page-indicator”
      ],
      hiddenPages: { // modules that are only shown on specific pages
      “screenSaver”: [
      “clock”,
      “MMM-SomeBackgroundImageModule”
      ],
      “admin”: [
      “MMM-ShowMeSystemStatsModule”,
      “MMM-AnOnScreenMenuModule”
      ]
      }
      }
      },

      posted in Troubleshooting
      msimon360M
      msimon360
    • RE: MMM-BackgroundSlideShow cutting off top of pics

      @sdetweil Thanks for the quick reply.
      Here are the ImagesPhotos and Carousel sections of my config.js. Running this I just get a blank screen instead of the photos. I do get photos if I use top_center without Carousel.

        {
          module: "MMM-ImagesPhotos",
          position: "fullscreen_below",
          config: {
           opacity: 0.9,
           animationSpeed: 5000,
           updateInterval: 15000,
           backgroundColor: 'grey',  // not used if fill is true
           fill: true,   // fill around image with blurred copy of image
      	   blur: 10,   // only used if fill is true
           sequential: false  // process the image list randomly
           }
        },
        {
          module: "MMM-Carousel",
          config: {
            transitionInterval: 10000,
            showPageIndicators: true,
            showPageControls: false,
            ignoreModules: ["alert", "updatenotification"],
            mode: "slides",
            slides: [
              ["clock", "weather", "calendar"],
              ["MMM-ImagesPhotos"]
           ],
          }
        },
      
      posted in Troubleshooting
      msimon360M
      msimon360
    • RE: MMM-BackgroundSlideShow cutting off top of pics

      @sdetweil I tried to use MMM-ImagesPhotos but could not get it to work with MMM-Carousel so I am trying MMM-BackgroundSlideShow instead.

      posted in Troubleshooting
      msimon360M
      msimon360
    • RE: MMM-BackgroundSlideShow cutting off top of pics

      @RonR I have the same issue. How do you “pull the window in from the side”? Can you post the module section from config.js, please?

      posted in Troubleshooting
      msimon360M
      msimon360
    • RE: MMM-Carousel Issue

      @Dunc12 I had the same issue. I removed the position: parameter from the Carousel configuration in the config.js file. Without a position the title is not displayed.

      posted in Troubleshooting
      msimon360M
      msimon360