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.

    MMM-NOAA - Another Weather Module

    Scheduled Pinned Locked Moved System
    690 Posts 77 Posters 2.9m Views 70 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.
    • Mykle1M Offline
      Mykle1 Project Sponsor Module Developer @tbbear
      last edited by

      @tbbear said in MMM-NOAA - Another Weather Module:

      oo i see so u are an iphone fan ?

      I’m an iPhone user but I am not a fan of iPhone prices.

      Create a working config
      How to add modules

      tbbearT 1 Reply Last reply Reply Quote 0
      • tbbearT Offline
        tbbear Module Developer @Mykle1
        last edited by

        @Mykle1 hahah thats true but they are the best, i have a iphone x and its unbelievable

        Robert the Bear

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

          @tbbear

          I’m still using the 6 but I have no intention of getting the newest version any time soon. I have to buy my grandchildren Christmas presents! :-)

          Create a working config
          How to add modules

          1 Reply Last reply Reply Quote 1
          • tbbearT Offline
            tbbear Module Developer @planet4
            last edited by

            @planet4 The problems are fixed. Please load the aktual version.

            Robert the Bear

            1 Reply Last reply Reply Quote 1
            • R Offline
              rezocharly
              last edited by

              hi ! Thanks for this great plugin !

              1. There is a way to hide the ALERT block ?

              2. I use the AirVisual API for the air quality index but it’s look incorrect about when I check the data from my city. There is a way to be more accurate?

              Thanks a lot

              cowboysdudeC 1 Reply Last reply Reply Quote 0
              • cowboysdudeC Offline
                cowboysdude Module Developer @rezocharly
                last edited by

                @rezocharly said in MMM-NOAA - Another Weather Module:

                hi ! Thanks for this great plugin !

                1. There is a way to hide the ALERT block ?

                2. I use the AirVisual API for the air quality index but it’s look incorrect about when I check the data from my city. There is a way to be more accurate?

                Thanks a lot

                Added a config option
                add -> alert:false
                to your config and it will not show alert.

                I don’t know what you mean by ‘look incorrect’ … it uses the lat and lon of your location BUT you can also add lat: your lat and lon: your lon to the config file… see if that improves it :)

                R 1 Reply Last reply Reply Quote 0
                • R Offline
                  rezocharly @cowboysdude
                  last edited by

                  thanks a lot @cowboysdude but alert are still displayed with alert: false,

                  And with showWind: true, indications about wind are not diplayed.

                  yawnsY 1 Reply Last reply Reply Quote 0
                  • yawnsY Offline
                    yawns Moderator @rezocharly
                    last edited by

                    @rezocharly

                    Could you please show where you added the config options? Maybe it’s in the wrong place and therefore ignored?

                    R 1 Reply Last reply Reply Quote 0
                    • tbbearT Offline
                      tbbear Module Developer
                      last edited by

                      @rezocharly … if there is no wind than it will not be displayed so no wind 0 will appear

                      Robert the Bear

                      R 1 Reply Last reply Reply Quote 0
                      • R Offline
                        rezocharly @yawns
                        last edited by

                        @yawns

                        Here you can see my config.js file: ( I’ve try first and last line)

                                    {
                                            disabled: false,
                                            module: 'MMM-NOAA',
                                            position: 'bottom_left',
                                                config: {
                                                    alert: false,                   
                                                    apiKey: "XXXXXX",    // https://www.wunderground.com/weather/api  select the middle plan... 
                                                    useAir: true,             // set to false if you do not want to use Air Quality Index
                                                    airKey: "XXXXXX",    // IF you want Air Quality Index
                                                    pws: "IAMIENS35",         // go here to find your pws: https://www.wunderground.com/wundermap
                                                    showClock: false,         // Hides or shows clock
                                                    dformat: false,            // for M/D/YYYY format, false for D/M/YYYY
                                                    format: "24",             // 12 or 24 hour format.. will default to 12 hour if none selected.
                                                    ampm: true,               // to show AM and PM on Sunrise/Sunset time
                                                    showGreet: false,         // deafult is false - to show greeting under clock and above date
                                                    name: "charly",           // Your name
                                                    showWind: true,
                                                    showDate: false,
                                                    showForecast: true,        //show bottom 3 day forecast
                                                    flash: false,               //Today in forecast flashes halo
                                                    showUV: true,              //show UV index
                                                    showBar: true,             // show Barometer
                                                    showHum: true,             //show Humidity level
                                                    position: 'bottom_left'    //whatever you have in above position must also be here
                        
                                    }
                                    },
                        
                        1 Reply Last reply Reply Quote 0
                        • R Offline
                          rezocharly @tbbear
                          last edited by

                          @tbbear I live in a windy area. Today Force 5/6.

                          As you can see with this screenshot the O doesn’t appear. Even if the config.js is well setup to display this information (as you can see on the post above)

                          Capture_d_e_cran_2017_12_14_a_17_46_39

                          tbbearT cowboysdudeC 2 Replies Last reply Reply Quote 0
                          • tbbearT Offline
                            tbbear Module Developer @rezocharly
                            last edited by

                            @rezocharly ok, so its another problem.
                            First the lines “ALERT” and the “Warning Level:” are parts of ur language translation file. So add them their and it will show in the correct language. Here my de.json file from translation dir.

                            "***ALERT***":"*** Wetterwarnungen ***",
                            "Warning Level: ":"Warnstufe: ",
                            

                            Second ur wind problem. This module depends on wunderground which is a network of personal wheaterstations. NOT every person who has a PWS has also a wind sensor. Maybe u try to select another
                            StationID which has one. (i had the same problem too)

                            Third with alerts: false i have this in my config.js just before the line position: … and it works.

                            Robert the Bear

                            R 1 Reply Last reply Reply Quote 0
                            • cowboysdudeC Offline
                              cowboysdude Module Developer @rezocharly
                              last edited by

                              @rezocharly said in MMM-NOAA - Another Weather Module:

                              @tbbear I live in a windy area. Today Force 5/6.

                              As you can see with this screenshot the O doesn’t appear. Even if the config.js is well setup to display this information (as you can see on the post above)

                              Capture_d_e_cran_2017_12_14_a_17_46_39

                              Just add this to your custom css

                              .MMM-NOAA .set {
                              float: left;
                              }

                              1 Reply Last reply Reply Quote 0
                              • R Offline
                                rezocharly @tbbear
                                last edited by

                                @tbbear

                                Thanks a lot for this information I got it but unfortunately nobody have a wind sensor around me :)

                                I confirm, just before the line position, alerts are not displayed anymore.

                                cowboysdudeC 1 Reply Last reply Reply Quote 0
                                • cowboysdudeC Offline
                                  cowboysdude Module Developer @rezocharly
                                  last edited by

                                  @rezocharly just disable that in the config like this:

                                  showWind: false

                                  As for the alerts I’m gonna let @tbbear chime in on this one…he rewrote the alerts :)

                                  1 Reply Last reply Reply Quote 1
                                  • P Offline
                                    Peter
                                    last edited by

                                    This module works perfect … almost …
                                    Is it possible to change CET in alerts to MET ( I use the Dutch translation)?
                                    Peter

                                    tbbearT 1 Reply Last reply Reply Quote 0
                                    • tbbearT Offline
                                      tbbear Module Developer @Peter
                                      last edited by

                                      @Peter The translation for the alerts depends on google translate, so at the moment we cant change this

                                      Robert the Bear

                                      P 1 Reply Last reply Reply Quote 1
                                      • P Offline
                                        Peter @tbbear
                                        last edited by

                                        @tbbear thanks!
                                        Peter

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

                                          Nice Module, really love it.
                                          Unfortunately i have a problem with another module (mmm-traffic) while NOAA is active. The font there should be colored but now it´s background is completely colored. While NOAA is disabled, everything is fine.
                                          Any clue?

                                          thx,
                                          Mac

                                          cowboysdudeC 1 Reply Last reply Reply Quote 0
                                          • cowboysdudeC Offline
                                            cowboysdude Module Developer @mac0178
                                            last edited by cowboysdude

                                            @mac0178 Let me take a look perhaps a css tag is similar :) Ahhhhhh yes perhaps this is it…

                                            In the NOAA css file there is this:

                                            .red{
                                            	background:#f00;
                                            }
                                            .green{
                                            	background:#0f0;
                                            }
                                            .blue{
                                            	background:#00f;
                                            }
                                            

                                            and in the MMM-Traffic module there is this:

                                            .green {
                                              color: #83FFB3;
                                            }
                                            
                                            .yellow {
                                              color: yellow;
                                            }
                                            
                                            .red {
                                              color: #FF4C4C;
                                            }
                                            

                                            So I’m going to update the css file and you can try it again :)

                                            Just go to the MagicMirror/modules/MMM-NOAA dir and type

                                            git pull

                                            that should update the css file :)

                                            1 Reply Last reply Reply Quote 2

                                            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
                                            • 34
                                            • 35
                                            • 1 / 35
                                            • 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