• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Problem with Weather Underground Forecast

Scheduled Pinned Locked Moved Troubleshooting
19 Posts 3 Posters 11.0k Views 3 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • X Offline
    xeroxu @yawns
    last edited by Apr 12, 2017, 9:26 AM

    @yawns said in Problem with Weather Underground Forecast:

    {

    Thank you yawns, that fix the Mirror starts but the module did not show up, the first problem was because I am an absolute NOOB in Javascript,

    Y 1 Reply Last reply Apr 12, 2017, 10:54 AM Reply Quote 0
    • Y Offline
      yawns Moderator @xeroxu
      last edited by Apr 12, 2017, 10:54 AM

      @xeroxu
      No worries. So you don’t see anything of this module?

      X 1 Reply Last reply Apr 12, 2017, 11:20 AM Reply Quote 0
      • X Offline
        xeroxu @yawns
        last edited by Apr 12, 2017, 11:20 AM

        @yawns , Right I see nottthin, no Cuurent weather no forecast , nothing ,I dont know in the configuration options I´ve read about Locid, but i only find pws in my MMM-WunderGround.js. Is that the error

        M 1 Reply Last reply Apr 12, 2017, 4:32 PM Reply Quote 0
        • M Offline
          Mykle1 Project Sponsor Module Developer @xeroxu
          last edited by Apr 12, 2017, 4:32 PM

          @xeroxu said in Problem with Weather Underground Forecast:

          in the configuration options I´ve read about Locid, but i only find pws in my MMM-WunderGround.js. Is that the error

          I see the locid reference in the config options, too, but I don’t think that’s your problem. I just used your pws: 'pws:IGELDERL219', in my WunderGround and it loads and displays just fine.

          Create a working config
          How to add modules

          X 1 Reply Last reply Apr 12, 2017, 5:33 PM Reply Quote 0
          • X Offline
            xeroxu @Mykle1
            last edited by Apr 12, 2017, 5:33 PM

            @Mykle1 no chance it will no show up :…( where can I check my Weathe Underground API KEY, maybe is soething wrong with tthe API KEY, Whats the difference between API KEY and KEY ID? Sorry for my dumb questions,

            M 1 Reply Last reply Apr 12, 2017, 5:49 PM Reply Quote 0
            • M Offline
              Mykle1 Project Sponsor Module Developer @xeroxu
              last edited by Mykle1 Apr 12, 2017, 5:51 PM Apr 12, 2017, 5:49 PM

              @xeroxu said in Problem with Weather Underground Forecast:

              where can I check my Weathe Underground API KEY, maybe is soething wrong with tthe API KEY,

              You can check your API key by going to https://www.wunderground.com/ and signing into your account. Once you’ve signed in, at the bottom of the page is Weather API. Click that! Your API KEY will be on the right side of the page, about 1/3 of the way down from the top. Copy and paste it into your config.js so it looks like this:
              apikey: '1234567891011',
              If you manually typed yours in you may have made a mistake and that’s all it takes to get no response from WonderGround.

              Create a working config
              How to add modules

              X 1 Reply Last reply Apr 12, 2017, 6:23 PM Reply Quote 0
              • X Offline
                xeroxu @Mykle1
                last edited by Apr 12, 2017, 6:23 PM

                @Mykle1 This also not works, I regenerate the Key and with the New One also nothing. Í think I stay on the default weather modules .

                X 1 Reply Last reply Apr 15, 2017, 6:16 AM Reply Quote 0
                • X Offline
                  xeroxu @xeroxu
                  last edited by xeroxu Apr 15, 2017, 11:47 AM Apr 15, 2017, 6:16 AM

                  @Mykle1 There must be something wrong with the apikey. iI try it with the wuforecast module, and here also nothing show up.I have free Membership and choose the anvil plan. Have I to make big changes in the weatherunderground.js? I put in my API and Location pws.

                  M 1 Reply Last reply Apr 15, 2017, 1:40 PM Reply Quote 0
                  • M Offline
                    Mykle1 Project Sponsor Module Developer @xeroxu
                    last edited by Mykle1 Apr 15, 2017, 1:45 PM Apr 15, 2017, 1:40 PM

                    @xeroxu said in Problem with Weather Underground Forecast:

                    There must be something wrong with the apikey. iI try it with the wuforecast module, and here also nothing show up.I have free Membership and choose the anvil plan. Have I to make big changes in the weatherunderground.js? I put in my API and Location pws.

                    You shouldn’t make any changes in the MMM-WunderGround.js file. Only make changes to the config.js file. If you have made changes to your MMM-WunderGround.js file then I suggest you revert them. If you can’t remember exactly what you changed then it would be easier for you to delete the entire folder and git clone https://github.com/RedNax67/MMM-WunderGround.git into your ~/MagicMirror/modules/ directory. Then add this to your config.js file, entering your WunderGround API key exactly and your pws

                    {
                    		disabled: false,
                        	module: 'MMM-WunderGround', // Just for forecast w/css entry
                        	position: 'top_right',
                        	config: {
                            apikey: 'YOUR_API_KEY', // private; don't share!
                            pws: 'pws:YOUR_PWS', // Richmondtown Weather Station - Very Cool
                    		currentweather: 0,
                            coloricon: true,
                            hourly: '1',
                            fctext: '1',
                            fcdaycount: "10",
                            fcdaystart: "0",
                            hourlyinterval: "2",
                            hourlycount: "1",
                    		animationSpeed: 5000,
                            alerttime: 10000,
                            alerttruncatestring: "english:",
                        	roundTmpDecs: 0,
                        	UseCardinals: 1,
                        	layout: "vertical",
                    		windunits: "mph",
                        	sysstat: "0"
                    	    }
                    		},	
                    

                    That should get you this:
                    0_1492263619018_Capture.JPG

                    Create a working config
                    How to add modules

                    X 1 Reply Last reply Apr 15, 2017, 8:10 PM Reply Quote 0
                    • X Offline
                      xeroxu @Mykle1
                      last edited by Apr 15, 2017, 8:10 PM

                      @Mykle1 Thank you Mykle1,now it work,now i hve to make the colour and Icon configuration, the Earth did net not show up but thats no bi deal you helped me so much. I stil got a nothe Problem with the startuo I have to Fix , maybe Ill find the Answer here in the Forum.

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        7/19
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy