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.

    Weatherunderground - currently - hourly - daily - configurable

    Scheduled Pinned Locked Moved Troubleshooting
    126 Posts 26 Posters 225.7k Views 13 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.
    • J Offline
      jagerpower @RedNax
      last edited by

      @RedNax yes that is correct

      RedNaxR 1 Reply Last reply Reply Quote 0
      • J Offline
        jagerpower @RedNax
        last edited by

        @RedNax /* Magic Mirror Config Sample

               {
        		module: 'MMM-WunderGround',
        		position: 'top_right',  // This can be any of the regions.
                                        // Best results in left or right regions.
            		config: {
        		// See 'Configuration options' for more information.
                			apikey: '+++++++++++', // private; don't share!
                			pws: 'IUTRECHT148;loctype:1',
                			lang: 'NL', 
                			fctext: '1',
                        		fcdaycount: "5",
                    		fcdaystart: "0",
                    		hourly: '1',
                    		hourlyinterval: "3",
                        		hourlycount: "2"
        			}
        	},
        ]
        
        1 Reply Last reply Reply Quote 0
        • RedNaxR Offline
          RedNax Module Developer @jagerpower
          last edited by RedNax

          @jagerpower Could you omit the loctype ie: IUTRECHT148 without the :loctype:1

          J 1 Reply Last reply Reply Quote 0
          • J Offline
            jagerpower @RedNax
            last edited by

            @RedNax it’s still stuck on loading

            RedNaxR 1 Reply Last reply Reply Quote 0
            • RedNaxR Offline
              RedNax Module Developer @jagerpower
              last edited by RedNax

              @jagerpower try setting pws to ‘pws:IUTRECHT148’ in your config:

              pws: 'pws:IUTRECHT148',
              
              J 1 Reply Last reply Reply Quote 0
              • J Offline
                jagerpower @RedNax
                last edited by

                @RedNax Thank you for this module and help, it works now

                RedNaxR 1 Reply Last reply Reply Quote 0
                • RedNaxR Offline
                  RedNax Module Developer @jagerpower
                  last edited by RedNax

                  @jagerpower Thanks and enjoy!!

                  J 1 Reply Last reply Reply Quote 1
                  • J Offline
                    jagerpower @RedNax
                    last edited by

                    @RedNax alt text

                    is there a way to remove the time? and get more days (like weather forecast from sunday to saterday?)

                    RedNaxR 1 Reply Last reply Reply Quote 0
                    • pugslyP Offline
                      pugsly
                      last edited by

                      Thanks for all the help, its working now with the correct directory and icons in the directory and icon settings in the config.js file.

                      I didn’t realize that the bit temp was also part of this module so I don’t need to call the original weather module for that ether.

                      Great work!!!

                      1 Reply Last reply Reply Quote 0
                      • C Offline
                        CommanderB
                        last edited by

                        Love this. Thanks. There are a couple of issues I’m working through, trying to help fix. The first is that beaufort icon isn’t showing because this isn’t defined in the CSS files. I would expect it to be in weather-icons-wind.css but its not.

                        Adding the definitions -

                        .wi-wind-beaufort-0:before {
                          content: "\f0b7";
                        }
                        .wi-wind-beaufort-1:before {
                          content: "\f0b8";
                        }
                        .wi-wind-beaufort-2:before {
                          content: "\f0b9";
                        }
                        .wi-wind-beaufort-3:before {
                          content: "\f0ba";
                        }
                        .wi-wind-beaufort-4:before {
                          content: "\f0bb";
                        }
                        .wi-wind-beaufort-5:before {
                          content: "\f0bc";
                        }
                        .wi-wind-beaufort-6:before {
                          content: "\f0bd";
                        }
                        .wi-wind-beaufort-7:before {
                          content: "\f0be";
                        }
                        .wi-wind-beaufort-8:before {
                          content: "\f0bf";
                        }
                        .wi-wind-beaufort-9:before {
                          content: "\f0c0";
                        }
                        .wi-wind-beaufort-10:before {
                          content: "\f0c1";
                        }
                        .wi-wind-beaufort-11:before {
                          content: "\f0c2";
                        }
                        .wi-wind-beaufort-12:before {
                          content: "\f0c3";
                        }
                        

                        to MMM-WunderGround.css fixes this.

                        RedNaxR 1 Reply Last reply Reply Quote 0
                        • C Offline
                          CommanderB
                          last edited by

                          The next issue is that the config variable hourlyInterval gets ignored. This can be fixed by changing line 238 to

                          var forecast = this.hourlyforecast[f * this.config.hourlyinterval];
                          
                          1 Reply Last reply Reply Quote 0
                          • RedNaxR Offline
                            RedNax Module Developer @CommanderB
                            last edited by

                            @CommanderB Thanks for cleaning up my messes! :)

                            The icons you seek are in the included weather-icons.css. I do agree you’d expect them in weather-icons-wind.css
                            However it’s entirely possible that MM uses the one weather-icons included in the vendor dir first. They’re not in that one.

                            .wi-wind-beaufort-0:before {
                              content: "\f0b7";
                            }
                            .wi-wind-beaufort-1:before {
                              content: "\f0b8";
                            }
                            .wi-wind-beaufort-2:before {
                              content: "\f0b9";
                            }
                            .wi-wind-beaufort-3:before {
                              content: "\f0ba";
                            }
                            .wi-wind-beaufort-4:before {
                              content: "\f0bb";
                            }
                            .wi-wind-beaufort-5:before {
                              content: "\f0bc";
                            }
                            .wi-wind-beaufort-6:before {
                              content: "\f0bd";
                            }
                            .wi-wind-beaufort-7:before {
                              content: "\f0be";
                            }
                            .wi-wind-beaufort-8:before {
                              content: "\f0bf";
                            }
                            .wi-wind-beaufort-9:before {
                              content: "\f0c0";
                            }
                            .wi-wind-beaufort-10:before {
                              content: "\f0c1";
                            }
                            .wi-wind-beaufort-11:before {
                              content: "\f0c2";
                            }
                            .wi-wind-beaufort-12:before {
                              content: "\f0c3";
                            
                            
                            1 Reply Last reply Reply Quote 0
                            • pugslyP Offline
                              pugsly
                              last edited by

                              if you put a copy of weather-icons-wind.css into the vendor/weather-icons folder that should fix it.

                              paviroP 1 Reply Last reply Reply Quote 0
                              • RedNaxR Offline
                                RedNax Module Developer @jagerpower
                                last edited by

                                @jagerpower You can set hourly to 0 in the config. This will remove the hourly forecasts… You can also adjust fcdaycount to the number of days you want to be shown.

                                1 Reply Last reply Reply Quote 0
                                • J Offline
                                  jagerpower @RedNax
                                  last edited by

                                  @RedNax is it possible to remove the English translation in the alert?

                                  1 Reply Last reply Reply Quote 0
                                  • RedNaxR Offline
                                    RedNax Module Developer
                                    last edited by RedNax

                                    Could be done by manipulating the string, however this might break things when other languages are selected. Could even be dependent on your pws… I’ll have a go at making it configurable…

                                    1 Reply Last reply Reply Quote 0
                                    • RedNaxR Offline
                                      RedNax Module Developer
                                      last edited by RedNax

                                      It’s a bit of a hack, but after getting the new version from github you can define

                                      alerttruncatestring: "english:"
                                      

                                      in your config. The alerttext will hen be truncated at the defined word/string

                                      1 Reply Last reply Reply Quote 0
                                      • paviroP Offline
                                        paviro @pugsly
                                        last edited by

                                        @pugsly you should not let users add stuff to the vendor folder! Plugin should be self containing :)

                                        We're all stories in the end. Just make it a good one, eh?

                                        – The Doctor

                                        1 Reply Last reply Reply Quote 0
                                        • pugslyP Offline
                                          pugsly
                                          last edited by

                                          So I came home today and noticed that the weather had not refreshed in two days. When I did a pm2 mm restart it did refresh but now im wondering maybe its not refreshing on its own? is there a config setting for how often it does a refresh?

                                          RedNaxR 1 Reply Last reply Reply Quote 0
                                          • RedNaxR Offline
                                            RedNax Module Developer @pugsly
                                            last edited by RedNax

                                            @pugsly That’s strange! There is a setting, but it has a default 10 minute setting.
                                            Did you look at the log for clues?

                                            updateInterval: 10 * 60 * 1000, // every 10 minutes
                                            
                                            1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 2 / 7
                                            • First post
                                              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