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

    vgardenn

    @vgardenn

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

    vgardenn Unfollow Follow

    Latest posts made by vgardenn

    • RE: MMM-JAST stopped updating a couple of days ago.

      Well you called it correct, I did not start with the sample config and adding that missing line at the end of my config got this mod working as expected. I had grabbed the example config from documentation here assuming it was good enough and was off to the races.

      Thank you very much for your help on this @sdetweil and @kristjanesperanto

      posted in Troubleshooting
      V
      vgardenn
    • RE: MMM-JAST stopped updating a couple of days ago.

      I’m unsure what that userConfig.modules is, from my googling it seems maybe related to node.js?

      Here is the entire config.js. The last 5 lines look similar to the sample config:

      let config = {
        modules: [
          {
            module: "MMM-MagicMover",
          },
          {
            module: "clock",
            position: "top_bar",
            config: {
      	timeFormat: 12,
      	displaySeconds: false,
      	dateFormat: "dddd, MMMM D",
              }
          },
          {
            module: "weather",
            position: "top_center",
            config: {
      	weatherProvider: "weathergov",
              type: "current",
      	tempUnits: "imperial",
      	roundTemp: true,
      	showFeelsLike: false,
      	colored: true,
      	showSun: false,
      	lat: "xxxxxx",
      	lon: "xxxxxxx",
              }
          },
          {
            module: "MMM-Jast",
            position: "middle_center",
            config: {
      	displayMode: "none",
      	stocks: [
      	  { name: 'DJIA', symbol: 'DIA' },
      	  { name: 'SP500', symbol: 'VOO' }
      	]
              }
          },
          {
             disabled: true,	
             module: "MMM-NowPlayingOnSpotify",
             position: "bottom_center",
             config: {
             	 showCoverArt: false,
               clientID: "<YOUR_CLIENT_ID>",
               clientSecret: "<YOUR_CLIENT_SECRET>",
               accessToken: "<YOUR_ACCESS_TOKEN>",
               refreshToken: "<YOUR_REFRESH_TOKEN>"
          	 }
          },
        ]
      };
      
      
      posted in Troubleshooting
      V
      vgardenn
    • RE: MMM-JAST stopped updating a couple of days ago.

      @KristjanESPERANTO Here is my system info from the npm run start output:

      ####  System Information  ####
      - SYSTEM:   manufacturer: Raspberry Pi Foundation; model: Raspberry Pi 5 Model B Rev 1.0; virtual: false; MM: 2.34.0
      - OS:       platform: linux; distro: Debian GNU/Linux; release: 13; arch: arm64; kernel: 6.12.62+rpt-rpi-2712
      - VERSIONS: electron: 39.2.7; used node: 22.21.1; installed node: 22.21.1; npm: 10.9.4; pm2: 6.0.14
      - ENV:      XDG_SESSION_TYPE: tty; MM_CONFIG_FILE: undefined
                  WAYLAND_DISPLAY:  undefined; DISPLAY: :0; ELECTRON_ENABLE_GPU: undefined
      - RAM:      total: 8062.92 MB; free: 7342.48 MB; used: 720.44 MB
      - OTHERS:   uptime: 12 minutes; timeZone: America/Chicago 
      
      

      This also highlighted an error I may have been missing in the pm2 logs output, so it may not be a module issue at all. I apologize if I had you looking at this and it was just an issue with my MM setup. I’ll start researching what this error means:

      [2026-01-19 18:14:54.626] [ERROR] [app] WARNING! Config file appears empty, maybe missing module.exports last line? 
      [2026-01-19 18:14:54.627] [ERROR] [app] WARNING! Could not load config file. Starting with default configuration. Error found: TypeError: userConfig.modules is not iterable 
      
      
      posted in Troubleshooting
      V
      vgardenn
    • RE: MMM-JAST stopped updating a couple of days ago.

      Hi, I’m stuck at “Loading…” on this module as well. This is a new build I’ve been working on in the last week or so, first timer with MagicMirror so hopefully I’m not missing something obvious. I’ve not been able to get MMM-Jast to display any values at all, but I can get other modules working no problem.

      I’m running the latest 2.10.3 version and I’ve removed and reinstalled it a few times, as well as completely reloaded my raspi device from scratch, but no luck. pm2 logs don’t show any errors, but I’m unsure what other logs to evaluate.

      Here is my config. I’ve tried a bunch of different config options to see if anything kicks it into gear, including a completely bare config with just the example config from the README, but each attempt just shows “Loading”.

          {
            module: "MMM-Jast",
            position: "middle_center",
            config: {
              displayMode: "none",
              stocks: [
                { name: 'DJIA', symbol: 'DIA' },
                { name: 'SP500', symbol: 'VOO' },
              ]
              },
          },
      
      
      posted in Troubleshooting
      V
      vgardenn