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

    Chrispl2000

    @Chrispl2000

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

    Chrispl2000 Unfollow Follow

    Latest posts made by Chrispl2000

    • RE: MMM-Wunderground

      Great catch!!! I’m new to pretty much everything involved in programming this thing.

      posted in Troubleshooting
      C
      Chrispl2000
    • RE: MMM-Wunderground

      The extra comma didn’t change anything. I thought you only used a comma when there is another item behind it?

      posted in Troubleshooting
      C
      Chrispl2000
    • MMM-Wunderground

      Hello All,

      I am trying to get the Wunderground module to load on my mirror. When I start the mirror program from the command line it simply does not show up. I have cloned the data in the gitHub link and have added it to my config but it still does not show up.

      My Config:

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
      	zoom: 1,
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
      
      	language: 'en',
      	timeFormat: 12,
      	units: 'imperial',
      
      	modules: [
      		{
      			module: 'clock',
      			position: 'top_bar',
      			config: {
      					displaySeconds: false,
      					showDate: false
      					}
      		},
      		{
      			module: 'MMM-WunderGround',
      			position: 'top_third',
      			config: {
      					apikey: '--------------------',
      					pws: 'pws:KTXIRVIN10',
      					hourly: '1'
      					}
      		}
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      
      

      When I start the Program in the terminal, it outputs this:

      pi@SmartScreen1:~/MagicMirror $ npm start

      magicmirror@2.1.0 start /home/pi/MagicMirror
      electron js/electron.js

      Starting MagicMirror: v2.1.0
      Loading config …
      Loading module helpers …
      No helper found for module: clock.
      Initializing new module helper …
      All module helpers loaded.
      Starting server op port 8080 …
      Server started …
      Connecting socket for: MMM-WunderGround
      MMM-WunderGround helper started …
      Sockets connected & modules started …
      Launching application.
      GET_WUNDERGROUND

      Thank you in advance for any help.

      posted in Troubleshooting
      C
      Chrispl2000