• 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.

MMM-NOAA V3.0 doesn't see anything

Scheduled Pinned Locked Moved Unsolved Troubleshooting
13 Posts 4 Posters 4.7k 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.
  • A Offline
    alvaron14
    last edited by Aug 14, 2018, 1:18 AM

    Hello guys im new with MagicMirror and im trying to install MMM-NOAA V3.0 but nothing appear, i followed this instructions:
    cd ~/MagicMirror/modules
    git clone https://github.com/cowboysdude/MMM-NOAA3
    cd MMM-NOAA3
    npm install

    And that’s my config.js code:

    {
                             module: 'MMM-NOAA3',
                            config: {
                                    provider: "Yahoo",
                                    apiKey: "adb1ddad12ee0e796180f3xxxxxxxxxx",
                                    airKey: "T624yBxxxxxxxxx",
                               css: "NOAA4",   // THIS MUST CONTAIN A CSS STYLE NAME
                                    updateInterval: 15 * 60 * 1000 // every 15 minutes or whatever you choose but make s$
                                    }
                    },
    

    And that’s what i see. Someone know what im doing wrong?
    0_1534209454878_Captura.PNG

    1 Reply Last reply Reply Quote 0
    • C Offline
      cowboysdude Module Developer
      last edited by Aug 14, 2018, 2:04 AM

      Hello there :)

      If you’re using yahoo as your default provider no api key is used for the weather.

      Here’s the example from github

      ` {
      
           module: 'MMM-NOAA3', 
           config: { 
       	    provider: "Yahoo",   
       	    airKey: "YOUR API KEY",  
               css: "NOAA3"                 // THIS MUST CONTAIN A CSS STYLE NAME  
       } 
       },`
      
      J A 2 Replies Last reply Aug 14, 2018, 10:00 AM Reply Quote 0
      • J Offline
        justjim1220 Module Developer @cowboysdude
        last edited by Aug 14, 2018, 10:00 AM

        @cowboysdude

        I tried to do a commit and a pull request to add the Thai translation.
        I have no idea if it worked or what.

        If you didn’t get notified regarding it, let me know.

        And then, learn me on how to do a pull request.
        The instructions just aren’t clear enough on how to do the compare part,
        I kept getting the message : “There isn’t anything to compare.”…

        0_1534240800056_Screenshot (50).png

        "Life's Too Short To Dance With Ugly People"
        Jim Hallock - 1995

        1 Reply Last reply Reply Quote 0
        • J Offline
          justjim1220 Module Developer
          last edited by Aug 14, 2018, 10:00 AM

          I can post the th.json file on here if you want

          "Life's Too Short To Dance With Ugly People"
          Jim Hallock - 1995

          1 Reply Last reply Reply Quote 0
          • A Offline
            alvaron14 @cowboysdude
            last edited by alvaron14 Aug 14, 2018, 12:10 PM Aug 14, 2018, 12:09 PM

            @cowboysdude
            I tryed that but it still not working

            {
                                    module: 'MMM-NOAA3',
                                    config: {
                                            provider: "Yahoo",
                                            airKey: "T624yBx9xxxxxxxxx",
                                       css: "NOAA3",   // THIS MUST CONTAIN A CSS STYLE NAME
                                            updateInterval: 15 * 60 * 1000 // every 15 minutes or whatever you choose but make sure you have an api that will allow that many calls per day!!!
                                            }
                            },
            

            That’s exactly what is in my code (except the airKey)

            C 1 Reply Last reply Aug 14, 2018, 12:16 PM Reply Quote 0
            • C Offline
              cowboysdude Module Developer @alvaron14
              last edited by cowboysdude Aug 14, 2018, 12:16 PM Aug 14, 2018, 12:16 PM

              @alvaron14 I would have to see your entire config… If you did the git pull and npm install this config should be working…so I’m guessing something else is not correct ;)

              A 2 Replies Last reply Aug 14, 2018, 12:21 PM Reply Quote 0
              • A Offline
                alvaron14 @cowboysdude
                last edited by Aug 14, 2018, 12:21 PM

                @cowboysdude
                Should i reinstall the module or you want to see a especific document?
                And if i need to reinstall the module how can i do it?

                K 1 Reply Last reply Aug 14, 2018, 5:09 PM Reply Quote 0
                • A Offline
                  alvaron14 @cowboysdude
                  last edited by Aug 14, 2018, 3:44 PM

                  @cowboysdude

                  This is my config/config.js
                  What’s wrong?

                  
                   *
                   * For more information how you can configurate this file
                   * See https://github.com/MichMich/MagicMirror#configuration
                   *
                   */
                  
                  var config = {
                          address: "localhost", // Address to listen on, can be:
                                                // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
                                                // - another specific IPv4/6 to listen on a specific interface
                                                // - "", "0.0.0.0", "::" to listen on any interface
                                                // Default, when address config is left out, is "localhost"
                          port: 8080,
                          ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
                                                                                 // or add a specific IPv4 of 192.168.1.5 :
                                                                                 // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
                                                                                 // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
                                                                                 // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
                  
                          language: "es",
                          timeFormat: 24,
                          units: "metric",
                  
                          modules: [
                                  {
                                          module: "alert",
                                  },
                                  {
                                          module: "updatenotification",
                                          position: "top_bar"
                                  },
                                  {
                                          module: "clock",
                                          position: "top_left"
                                  },
                                  {
                                          module: "calendar",
                                          header: "Calendario",
                                          position: "top_left",
                                          config: {
                                                  calendars: [
                                                          {
                                                                  symbol: "calendar-check-o ",
                                                                  url: "https://calendar.google.com/calendar/ical/alvagomez%40gmail.com/private-75fa092d74afee9ff6xxxxxxxxxxxx/basic.ics"
                                                          }
                                                  ]
                                          }
                                  },
                                  {
                                  
                                                          module: "currentweather",
                                  
                                                          position: "top_right",
                                  
                                                          config: {
                                  
                                                                  location: "Valencia",
                                  
                                                                  locationID: "6362115",  //ID from http://www.openweathermap.org/help/city_list.txt
                                  
                                                                  appid: "adb1ddad12ee0e796180f33fxxxxxxxxxx"
                                  
                                                          }
                                  
                                                  },
                                  
                                                  {
                                  
                                                          module: "weatherforecast",
                                  
                                                          position: "top_right",
                                  
                                                          header: "El tiempo",
                                  
                                                          config: {
                                  
                                                                  location: "Valencia",
                                  
                                                                  locationID: "6362115",  //ID from http://www.openweathermap.org/help/city_list.txt
                                  
                                                                  appid: "adb1ddad12ee0e796xxxxxxxxxxxxx"
                                  
                                                          }
                                  
                                                  },
                                  
                                                 {
                                  
                                                          module: 'MMM-NOAA3',
                                  
                                                          config: {
                                  
                                                                  provider: "Yahoo",
                                  
                                                                  airKey: "T624yBx9xxxxxxxxx",
                                  
                                                             css: "NOAA3",   // THIS MUST CONTAIN A CSS STYLE NAME
                                  
                                                                  updateInterval: 15 * 60 * 1000 // every 15 minutes or whatever you choose but make sure you have an api that will allow that many calls per day!!!
                                  
                                                                  }
                                  
                                                  },
                                                  {
                                                  
                                                                          module: 'MMM-Traffic',
                                                  
                                                                          position: 'bottom_right',
                                                  
                                                                          classes: 'dimmed medium', //optional, default is 'bright medium', only applies to commute info not route_name
                                                  
                                                                          config: {
                                                  
                                                                                  api_key: 'AIzaSyAXjuPzn1NQKm9ZBx6rjFxxxxxxxxxxxxx',
                                                  
                                                                                  mode: 'driving',
                                                  
                                                                                  origin: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
                                                  
                                                                                  destination: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
                                                  
                                                                                  route_name: 'Ruta al trabajo',
                                                  
                                                                                  changeColor: true,
                                                  
                                                                                  showGreen: true,
                                                  
                                                                                  limitYellow: 5, //Greater than 5% of journey time due to traffic
                                                  
                                                                                  limitRed: 20, //Greater than 20% of journey time due to traffic
                                                  
                                                                                  traffic_model: 'pessimistic',
                                                  
                                                                                  interval: 120000 //2 minutes
                                                  
                                                                                  }
                                                  
                                                                  },
                                                  
                                                                  {
                                                  
                                                                          module: "newsfeed",
                                                  
                                                                          position: "bottom_bar",
                                                  
                                                                          config: {
                                                  
                                                                                  feeds: [
                                                  
                                                                                          {
                                                  
                                                                                                  title: "Portada",
                                                  
                                                                                                  url: "http://estaticos.elmundo.es/elmundo/rss/portada.xml"
                                                  
                                                                                          },
                                                  
                                                                                          {
                                                  
                                                                                                  title: "Valencia",
                                                  
                                                                                                  url: "http://estaticos.elmundo.es/elmundo/rss/valencia.xml"
                                                  
                                                                                          },
                                                  
                                                                                          {
                                                  
                                                                                                  title: "Internacional",
                                                  
                                                                                                  url: "http://estaticos.elmundo.es/elmundo/rss/internacional.xml"
                                                  
                                                                                          }
                                                  
                                                                                  ],
                                                  
                                                                                  showSourceTitle: true,
                                                  
                                                                                  showPublishDate: true
                                                  
                                                                          }
                                                  
                                                                  },
                                                  
                                                          ]
                  
                  };
                  
                  /*************** DO NOT EDIT THE LINE BELOW ***************/
                  if (typeof module !== "undefined") {module.exports = config;}
                  
                  
                  1 Reply Last reply Reply Quote 0
                  • K Offline
                    kurtern84 Project Sponsor @alvaron14
                    last edited by Aug 14, 2018, 5:09 PM

                    @alvaron14 Try adding position under NOAA3 in your config.js

                    A 1 Reply Last reply Aug 14, 2018, 6:13 PM Reply Quote 2
                    • A Offline
                      alvaron14 @kurtern84
                      last edited by Aug 14, 2018, 6:13 PM

                      @kurtern84 @cowboysdude
                      Ty the problem was the position, my new functional code:

                      {
                                              module: 'MMM-NOAA3',
                                              position: "top_right",
                                              config: {
                                                      provider: "Yahoo",
                                                      airKey: "T624yBx9xxxxxxxxx",
                                                 css: "NOAA3",   // THIS MUST CONTAIN A CSS STYLE NAME
                                                      updateInterval: 15 * 60 * 1000 // every 15 minutes or whatever you choose but make sure you have an api that will allow that many calls per day!!!
                                                      }
                      },
                      
                      K 1 Reply Last reply Aug 15, 2018, 6:03 AM Reply Quote 1
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        8/13
                        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