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 Utilities
    182 Posts 47 Posters 389.6k Views 51 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.
    • cowboysdudeC Offline
      cowboysdude Module Developer @nevint
      last edited by

      @nevint said in Weatherunderground - currently - hourly - daily - configurable:

      Noob issue here. How do I update the program? I get an alert saying to update wunderground, but I don’t know how to do that!

      In a terminal window go to :

      MagicMirror/modules/wunderground

      Then type:

      git pull

      That should update it.

      1 Reply Last reply Reply Quote 0
      • K Offline
        kasperb @RedNax
        last edited by

        @RedNax I’ve tried changing this in the main MMM-WunderGround CSS and custom CSS, but neither seem to affect the font size. (note that my goal is to increase the font size):

        .MMM-WunderGround .smaller {
            font-size: 80%;
        }
        

        and

        .MMM-WunderGround .smaller { font-size: 80%; }
        

        Any guidance would be appreciated.

        strawberry 3.141S 1 Reply Last reply Reply Quote 0
        • strawberry 3.141S Offline
          strawberry 3.141 Project Sponsor Module Developer @kasperb
          last edited by

          @kasperb only the wind direction icon is using the class smaller, so with your selector you would only change this specific icon.

          Please create a github issue if you need help, so I can keep track

          1 Reply Last reply Reply Quote 0
          • D Offline
            DeanoAus
            last edited by DeanoAus

            Hey guys, Is there any way to troubleshoot this? I’m stuck on “Loading…”

            Installed the latest module, config is below. My api works as I’ve tested it with another module.

            I’m stuck!

            {
            		    module: 'MMM-WunderGround',
            		    position: 'top_left',
            		    config: {
            		        apikey: 'blah', 
                    pws: 'pws:INSWTHEO3', 
            			hourly: '1',
            		        fctext: '1',
            		        fcdaycount: "9",
            		        fcdaystart: "1",
            		        hourlyinterval: "3",
            		        hourlycount: "3",
            		        alerttime: 30000,
            		        alerttruncatestring: "english:",
            			roundTmpDecs: '1',
            		    	layout: "vertical",
            			windunits: "mph",
            			coloricon: true,
            		    	sysstat: 0
            		    		}
            		},
            
            K 1 Reply Last reply Reply Quote 0
            • K Offline
              kasperb @DeanoAus
              last edited by kasperb

              @DeanoAus The only thing I can think of is adding the " " to coloricon value:

              coloricon: "true",
              D 1 Reply Last reply Reply Quote 0
              • D Offline
                DeanoAus @kasperb
                last edited by

                @kasperb Thanks mate, I restarted the pi and it just randomly started working. Nothing in logs to indicate why. shrugs

                1 Reply Last reply Reply Quote 0
                • KimzerK Offline
                  Kimzer
                  last edited by

                  My temperature isnt changing whatsoever, it stays stuck on 17.3 degrees, what could be the issue here? Anyone?

                  bheplerB 1 Reply Last reply Reply Quote 0
                  • bheplerB Offline
                    bhepler Module Developer @Kimzer
                    last edited by

                    @Kimzer Most likely, it’s a problem with the Weather Underground database. If something is preventing them from receiving an update from the weather station they use to provide you with conditions, then they’ll just stay there until they resolve the issue.

                    You could try shifting the forecast to another location just to verify that the temperature does change over time. If other locations update, then the problem is on their end. If it doesn’t update temperature at all, then come back and we’ll see what we can find.

                    1 Reply Last reply Reply Quote 2
                    • C Offline
                      cyberphox
                      last edited by

                      Mine is stuck on 20.0 degrees for a few weeks now…haven’t had time to troubleshoot it either…

                      Full time Dad, DJ and entertainer and lover of technology.

                      Mykle1M 1 Reply Last reply Reply Quote 0
                      • Mykle1M Offline
                        Mykle1 Project Sponsor Module Developer @cyberphox
                        last edited by

                        @cyberphox said in Weatherunderground - currently - hourly - daily - configurable:

                        Mine is stuck on 20.0 degrees for a few weeks now…haven’t had time to troubleshoot it either…

                        Try what @bhepler suggested. Try a different pws: to see if that’s the problem. Here is mine if you want to test with that. It’s working normally.

                        pws: 'pws:KNYNEWYO103',

                        Create a working config
                        How to add modules

                        1 Reply Last reply Reply Quote 0
                        • KimzerK Offline
                          Kimzer
                          last edited by

                          Using a different pws worked for me. Now its all good.
                          Only wondering how i can change the colors of the temperature and the weather forecast text, anyone got some custom css for it? =)

                          J 1 Reply Last reply Reply Quote 0
                          • J Offline
                            j.e.f.f Project Sponsor Module Developer @Kimzer
                            last edited by j.e.f.f

                            @Kimzer which part are you looking to change? The big temperature in current conditions? Or the min/max temps in the forecast table? Same question for the forecast text – is this the current day’s forecast (i.e.: grey text above the large current temperature) or the text within the forecast table? Also, are you using the vertical or horizontal layout? If I recall correctly, the class names change slightly with the layout. Let me know and I can get you started with the CSS.

                            1 Reply Last reply Reply Quote 0
                            • KimzerK Offline
                              Kimzer
                              last edited by Kimzer

                              alt text

                              The parts marked in red is what i want to change color on (Y)
                              Thanks for helping j.e.f.f :)

                              J 1 Reply Last reply Reply Quote 0
                              • J Offline
                                j.e.f.f Project Sponsor Module Developer @Kimzer
                                last edited by

                                @Kimzer Try these. Adjust the color values as you like.

                                For the large temperature display:

                                .MMM-WunderGround .large .bright {
                                  color: #FFFFCC;
                                }
                                

                                The human-readable text forecast:

                                .MMM-WunderGround table.small tr:first-child td {
                                  color: #FFFFCC;
                                }
                                

                                The hours in the forecast table:

                                .MMM-WunderGround .hourv {
                                  color: #FFFFCC;
                                }
                                

                                I applied these style to the MMM-WunderGround module and you can see how these three items are coloured the buttery colour I specified:

                                0_1499261020868_Screen Shot 2017-07-05 at 9.23.23 AM.png

                                F 1 Reply Last reply Reply Quote 0
                                • KimzerK Offline
                                  Kimzer
                                  last edited by

                                  Perfect! Thanks alot! :D

                                  1 Reply Last reply Reply Quote 0
                                  • F Offline
                                    Fonfon @j.e.f.f
                                    last edited by

                                    @j.e.f.f How you make a table style ? i love it !

                                    J 1 Reply Last reply Reply Quote 0
                                    • J Offline
                                      j.e.f.f Project Sponsor Module Developer @Fonfon
                                      last edited by

                                      @Fonfon That’s the default for MMM-WunderGround, using the custom styles I posted above. Here’s my config:

                                          {
                                              module: 'MMM-WunderGround',
                                              position: 'top_right',
                                              config: {
                                                  apikey: 'my_api_key', // private; don't share!
                                                  pws: 'pws:IONTORON421',
                                                  hourly: '1',
                                                  fctext: '1',
                                                  fcdaycount: "5",
                                                  fcdaystart: "0",
                                                  hourlyinterval: "3",
                                                  hourlycount: "2",
                                                  alerttime: 10000,
                                                  alerttruncatestring: "english:",
                                                  roundTmpDecs: 1,
                                                  UseCardinals: 0,
                                                  layout: "vertical",
                                                  sysstat: 0,
                                                  coloricon: true,
                                              }
                                          },
                                      
                                      F 1 Reply Last reply Reply Quote 0
                                      • F Offline
                                        Fonfon @j.e.f.f
                                        last edited by

                                        @j.e.f.f ok layout change i’m in a horizontale style not verticale
                                        thanks man ;)

                                        1 Reply Last reply Reply Quote 0
                                        • F Offline
                                          fredall
                                          last edited by

                                          Hi is it possible to combine the horizontal view for the hourly forecast and vertical for daily ?

                                          1 Reply Last reply Reply Quote 0
                                          • M Offline
                                            maestro82
                                            last edited by

                                            What variables control the size of the large current weather icon and the small forecast icons? I was trying to make the current icon slightly smaller and have somehow managed to make the forecast icon micro sized. Can’t seem to get it back now.

                                            Thanks,

                                            M 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
                                            • 8
                                            • 9
                                            • 10
                                            • 5 / 10
                                            • 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