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

    DavidSung

    @DavidSung

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

    DavidSung Unfollow Follow

    Latest posts made by DavidSung

    • RE: MMM-windyV2 module installed, but have a problem

      @mumblebaj thx for ur reply, :) I didn’t thought about API key. will remove that

      posted in Troubleshooting
      D
      DavidSung
    • RE: MMM-windyV2 module installed, but have a problem

      @cowboysdude thx , I will try that way :)

      posted in Troubleshooting
      D
      DavidSung
    • MMM-windyV2 module installed, but have a problem

      hellow, I installed MMM-windyV2 and set config.js also.

      but when I npm run start, it’s working other modules, but not working MMM-windyV2

      just black screen and date, newsfeed etc.

      here is my cord.

      1642149173.035.png

      broadcastNewsUpdates: true
      }
      },
      {
      module: ‘MMM-AirQuality’,
      position: ‘top_right’,
      config: {
      location: ‘korea/gyeonggi/gunpo-si/dang-dong/’,
      lang: ‘kr’
      }
      },
      {
      module: “MMM-WindyV2”,
      position: ‘fullscreen_above’, // this must be set to ‘fullscreen_above’
      config: {
      apiKey: ‘N0KGdbz9qUYjaAbW6X0L311BHBBmGcQk’, // insert your free or paid API key here
      initLoadDelay: 50, // optional, default is 50 milliseconds
      latitude: 127.7, // example: 69.123
      longitude: 36.6, // example: 17.123
      zoomLevel: 6, // set your preferred zoom level
      showLayer: ‘rain’, // wind, rain, clouds, temp, pressure, currents, waves
      rotateLayers: false, // set to true to rotate layers
      layersToRotate: [‘wind’,‘rain’], // layers to rotate
      delayRotate: 5000, // delay between rotated layers, in milliseconds
      wMinZoom: 3, // set minimum zoom level for WindyV2
      wMaxZoom: 17, // set maximum zoom level for WindyV2
      windyMetric: ‘m/s’, // ‘kt’, ‘bft’, ‘m/s’, ‘km/h’ and ‘mph’
      updateTimer: 60 * 60 * 1000 * 6, // update per 6 hours
      retainZoom: true // retain zoomlevel between changing overlays
      }
      },
      // {
      // module: “MMM-windy”,
      // position: ‘fullscreen_above’, // this must be set to ‘fullscreen_above’
      // config: {
      // apiKey: ‘N0KGdbz9qUYjaAbW6X0L311BHBBmGcQk’,
      // initLoadDelay: 50, // optional, default is 50 milliseconds
      // location: { // optional location in latitude and longitude
      // lat: 36.5,
      // lng: 127.7,
      // },
      // zoom: 3, // optional zoom level, default is 5. Bigger numbers zoom closer
      // particlesAnim: ‘on’, // optional, turns particles animation on or off, default ‘on’
      // graticule: false, // optional
      // englishLabels: false, // optional
      // hourFormat: ‘12h’, // optional
      // overlay: ‘wave’ //optional
      // }
      // },

      ]
      };

      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== “undefined”) {module.exports = config;}

      posted in Troubleshooting
      D
      DavidSung