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.

    Weather

    Scheduled Pinned Locked Moved Troubleshooting
    28 Posts 7 Posters 16.9k Views 6 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.
    • R Offline
      relluts
      last edited by

      Nevermind. Got it resolved.

      1 Reply Last reply Reply Quote 0
      • G Offline
        Gamble
        last edited by

        What did you do? mine is doing this

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

          @Gamble said in Weather:

          What did you do? mine is doing this

          Post your weather config.js entry here using this guide

          https://forum.magicmirror.builders/topic/4247/how-to-post-code-on-the-forum-for-absolute-beginners

          Create a working config
          How to add modules

          1 Reply Last reply Reply Quote 0
          • G Offline
            Gamble
            last edited by

            */
            
            var config = {
                   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: "en",
                   timeFormat: 12,
                   units: "imperial",
                   modules: [
                           {
                                   module: "updatenotification",
                                   position: "top_bar"
                            },
                           {
                                   module: "clock",
                                   position: "top_left"
                           },
                           {
                                   module: "calendar",
                                   header: "US Holidays",
                                   position: "top_left",
                                   config: {
                                           calendars: [
                                                   {
                                                           symbol: "calendar-check-o ",
                                                           url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
                                                   }
                                           ]
                                   }
                           },
                           {
                                   module: "compliments",
                                   position: "lower_third"
             },
                           {
                                   module: "currentweather",
                                   position: "top_right",
                                   config: {
                                           location: "",
                                           locationID: "4899154",  //ID from http://www.openweathermap.org/help/city_list.txt
                                           appid: "8cfa7d38943405ef3da2456894ea1143"
                                   }
                           },
                           {
                                   module: "weatherforecast",
                                   position: "top_right",
                                   header: "Weather Forecast",
                                   config: {
                                           location: "",
                                           locationID: "4899154",  //ID from http://www.openweathermap.org/help/city_list.txt
                                           appid: "8cfa7d38943405ef3da2456894ea1143"
                                   }
                           },
                           {
                                   module: "newsfeed",
                                   position: "bottom_bar",
                                   config: {
                                           feeds: [
                                                   {
                                                           title: "Chicago",
                                                           url: "feeds.foxnews.com/foxnews/latest"
                                                   }
                                           ],
                                   config: {
                                           location: "",
                                           locationID: "4899154",  //ID from http://www.openweathermap.org/help/city_list.txt
                                           appid: "8cfa7d38943405ef3da2456894ea1143"
                                   },
                          },
                          {
                                   module: "weatherforecast",
                                   position: "bottom_left",
                                   header: "Weather Forecast",
                                   config: {
                                           location: "",
                                           locationID: "4899154",  //ID from http://www.openweathermap.org/help/city_list.txt
                                           appid: "8cfa7d38943405ef3da2456894ea1143"
                                   }
                           },
                           {
                                   module: "newsfeed",
                                   position: "bottom_bar",
                                   config: {
                                           feeds: [
                                                   {
                                                           title: "Chicago",
                                                           url: "feeds.foxnews.com/foxnews/latest"
                                                   }
                                           ],
                                           showSourceTitle: true,
                                           showPublishDate: true
                                   }
                           },
                   ]
            
            },
            

            I still need to add the MMM-trello but for now JSlint.com is giving me an error and I can’t figure it out.
            So for right now it doesn’t even load

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

              @Gamble Here is a valid config… there were a few errors in it… the very end you had },
              should be };

              Happens to the best of us :) Once you get this working as is then make a copy of it and add your Trello module… that way if you have a problem you ALWAYS have a backup of a good working config ;)

              var config = {
              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: "en",
              timeFormat: 12,
              units: "imperial",
              modules: [{
                      module: "updatenotification",
                      position: "top_bar"
                  },
                  {
                      module: "clock",
                      position: "top_left"
                  },
                  {
                      module: "calendar",
                      header: "US Holidays",
                      position: "top_left",
                      config: {
                          calendars: [{
                              symbol: "calendar-check-o ",
                              url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
                          }]
                      }
                  },
                  {
                      module: "compliments",
                      position: "lower_third"
                  },
                  {
                      module: "currentweather",
                      position: "top_right",
                      config: {
                          location: "",
                          locationID: "4899154", //ID from http://www.openweathermap.org/help/city_list.txt
                          appid: "8cfa7d38943405ef3da2456894ea1143"
                      }
                  },
                  {
                      module: "weatherforecast",
                      position: "top_right",
                      header: "Weather Forecast",
                      config: {
                          location: "",
                          locationID: "4899154", //ID from http://www.openweathermap.org/help/city_list.txt
                          appid: "8cfa7d38943405ef3da2456894ea1143"
                      }
                  },
                  {
                      module: "newsfeed",
                      position: "bottom_bar",
                      config: {
                          feeds: [{
                              title: "Chicago",
                              url: "feeds.foxnews.com/foxnews/latest"
                          }],
                      }
              
                  },
                  {
                      module: "weatherforecast",
                      position: "bottom_left",
                      header: "Weather Forecast",
                      config: {
                          location: "",
                          locationID: "4899154", //ID from http://www.openweathermap.org/help/city_list.txt
                          appid: "8cfa7d38943405ef3da2456894ea1143"
                      }
                  },
                  {
                      module: "newsfeed",
                      position: "bottom_bar",
                      config: {
                          feeds: [{
                              title: "Chicago",
                              url: "feeds.foxnews.com/foxnews/latest"
                          }],
                          showSourceTitle: true,
                          showPublishDate: true
                      }
                  },
                 ]
                };
              
              1 Reply Last reply Reply Quote 1
              • G Offline
                Gamble
                last edited by

                Thanks but I still have an error and it’s not loading. Can you have a look at 61

                var config = {
                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: "en",
                timeFormat: 12,
                units: "imperial",
                modules: [{
                        module: "updatenotification",
                        position: "top_bar"
                    },
                    {
                        module: "clock",
                        position: "top_left"
                    },
                    {
                        module: "calendar",
                        header: "US Holidays",
                        position: "top_left",
                        config: {
                            calendars: [{
                                symbol: "calendar-check-o ",
                                url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
                            }]
                        }
                    },
                    {
                        module: "compliments",
                        position: "lower_third"
                    },
                    {
                        module: "currentweather",
                        position: "top_right",
                        config: {
                            location: "",
                            locationID: "4899154", //ID from http://www.openweathermap.org/help/city_list.txt
                            appid: "8cfa7d38943405ef3da2456894ea1143"
                        }
                    },
                    {
                        module: "weatherforecast",
                        position: "top_right",
                        header: "Weather Forecast",
                        config: {
                            location: "",
                            locationID: "4899154", //ID from http://www.openweathermap.org/help/city_list.txt
                            appid: "8cfa7d38943405ef3da2456894ea1143"
                        }
                    },
                    {
                        module: "newsfeed",
                        position: "bottom_bar",
                        config: {
                            feeds: [{
                                title: "Chicago",
                                url: "feeds.foxnews.com/foxnews/latest"
                            }],
                        },
                    },
                    {
                        module: "weatherforecast",
                        position: "bottom_left",
                        header: "Weather Forecast",
                        config: {
                            location: "",
                            locationID: "4899154", //ID from http://www.openweathermap.org/help/city_list.txt
                            appid: "8cfa7d38943405ef3da2456894ea1143"
                        }
                    },
                    {
                        module: "newsfeed",
                        position: "bottom_bar",
                        config: {
                            feeds: [{
                                title: "Chicago",
                                url: "feeds.foxnews.com/foxnews/latest"
                            }],
                            showSourceTitle: true,
                            showPublishDate: true
                        }
                    },
                   ]
                  };
                
                Mykle1M V 2 Replies Last reply Reply Quote 0
                • Mykle1M Offline
                  Mykle1 Project Sponsor Module Developer @Gamble
                  last edited by

                  @Gamble said in Weather:

                  Can you have a look at 61

                  Remove the comma

                  Create a working config
                  How to add modules

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

                    You also have 2 newsfeed entries with the same url

                    Create a working config
                    How to add modules

                    1 Reply Last reply Reply Quote 0
                    • G Offline
                      Gamble
                      last edited by

                      Which comma?
                      I deleted the second newsfeed so now it’s error on line 51 but I don’t see a comma.

                      var config = {
                      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: "en",
                      timeFormat: 12,
                      units: "imperial",
                      modules: [{
                              module: "updatenotification",
                              position: "top_bar"
                          },
                          {
                              module: "clock",
                              position: "top_left"
                          },
                          {
                              module: "calendar",
                              header: "US Holidays",
                              position: "top_left",
                              config: {
                                  calendars: [{
                                      symbol: "calendar-check-o ",
                                      url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
                                  }]
                              }
                          },
                          {
                              module: "compliments",
                              position: "lower_third"
                          },
                          {
                              module: "currentweather",
                              position: "top_right",
                              config: {
                                  location: "",
                                  locationID: "4899154", //ID from http://www.openweathermap.org/help/city_list.txt
                                  appid: "8cfa7d38943405ef3da2456894ea1143"
                              }
                          },
                          {
                              module: "newsfeed",
                              position: "bottom_bar",
                              config: {
                                  feeds: [{
                                      title: "Chicago",
                                      url: "feeds.foxnews.com/foxnews/latest"
                                  }],
                              }
                      
                          },
                          {
                              module: "weatherforecast",
                              position: "top_right",
                              header: "Weather Forecast",
                              config: {
                                  location: "",
                                  locationID: "4899154", //ID from http://www.openweathermap.org/help/city_list.txt
                                  appid: "8cfa7d38943405ef3da2456894ea1143"
                              }
                          },
                          {
                              module: "newsfeed",
                              position: "bottom_bar",
                              config: {
                                  feeds: [{
                                      title: "Chicago",
                                      url: "feeds.foxnews.com/foxnews/latest"
                                  }],
                                  showSourceTitle: true,
                                  showPublishDate: true
                              }
                          },
                         ]
                        };
                      
                      Mykle1M 1 Reply Last reply Reply Quote 0
                      • cowboysdudeC Offline
                        cowboysdude Module Developer
                        last edited by cowboysdude

                        go to line 51 you have it like this

                        }],

                        SHOULD BE

                        },]

                        Check the example here:

                        https://github.com/MichMich/MagicMirror/tree/master/modules/default/newsfeed

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

                          @Gamble said in Weather:

                          I deleted the second newsfeed so now it’s error on line 51 but I don’t see a comma.

                          Because you deleted it? :^)

                          You should read this:
                          https://forum.magicmirror.builders/topic/4231/how-to-add-modules-for-absolute-beginners

                          Create a working config
                          How to add modules

                          1 Reply Last reply Reply Quote 0
                          • G Offline
                            Gamble @cowboysdude
                            last edited by Gamble

                            @cowboysdude said in Weather:

                            go to line 51 you have it like this

                            }],

                            SHOULD BE

                            },]

                            Check the example here:

                            https://github.com/MichMich/MagicMirror/tree/master/modules/default/newsfeed

                            still not working :(

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

                              Just repost your entire config minus api keys…

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

                                @Gamble said in Weather:

                                still not working :(

                                My suggestion:

                                Start with a new config and get that working first.
                                https://forum.magicmirror.builders/topic/4528/how-to-create-a-working-config-for-absolute-beginners

                                Then when you want to add a module:
                                https://forum.magicmirror.builders/topic/4231/how-to-add-modules-for-absolute-beginners

                                These tutorials walk you through the process. All you have to do is follow them line by line. There’s no guesswork. In the time that it takes you to read them, you’ll already be up and running, and you’ll learn something.

                                Create a working config
                                How to add modules

                                1 Reply Last reply Reply Quote 1
                                • G Offline
                                  Gamble
                                  last edited by

                                  i think my sample file is jacked up. do we have another one on here i can download or copy/paste the code?

                                  R 1 Reply Last reply Reply Quote 0
                                  • R Offline
                                    ranger33 @Gamble
                                    last edited by

                                    @Gamble your sample is corrupted? That’s odd…

                                    https://github.com/MichMich/MagicMirror/blob/master/config/config.js.sample

                                    Here’s the sample config!

                                    G 1 Reply Last reply Reply Quote 0
                                    • G Offline
                                      Gamble @ranger33
                                      last edited by

                                      @ranger33

                                      Thanks. I got it to work as default and started to changes things one by one like the weather and news
                                      But I put the trello app over the compliments module and it says invalid file. i put the compliments back in and now it’s all just a big black blank screen. i’m pretty confused here

                                      1 Reply Last reply Reply Quote 0
                                      • R Offline
                                        ranger33
                                        last edited by

                                        When you say put the trello app over compliments what do you mean? If you can explain a bit more we can certainly help yah just need to see what you’re seeing.

                                        1 Reply Last reply Reply Quote 0
                                        • G Offline
                                          Gamble
                                          last edited by

                                          I don’t want the compliments so i replaced the compliments text with the trello text. Every time I add the trello it says it’s not a valid file

                                          So here is what I did. I started from scratch with the sample file and it works or at least it worked the first time. Seems nomatter what changes the weather doesn’t display at all. I also have a nightmare of a time exiting the magic mirror app. I’ll do a control f4 and it closes and reopens right away. Or i’ll go to terminal and do a controlx then alt F4 to close the magic mirror and it freezes EVERY time. i have to reboot this pi every time i want to change something, it’s incredibility slow

                                          For the news. I’ve tried changing the URL to a google news, abc7, or anything else I find and it just says loading. i even tried changing one little thing at at time and it still doesn’t work. i’ll post the code in a min. the pi is still loading the browser.

                                          1 Reply Last reply Reply Quote 0
                                          • G Offline
                                            Gamble
                                            last edited by

                                            /* Magic Mirror Config Sample
                                            *

                                            • By Michael Teeuw http://michaelteeuw.nl
                                            • MIT Licensed.
                                            • For more information how you can configurate this file
                                            • See https://github.com/MichMich/MagicMirror#configuration

                                            */

                                            var config = {
                                            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: "en",
                                            timeFormat: 12,
                                            units: "metric",
                                            
                                            modules: [
                                            	{
                                            		module: "alert",
                                            	},
                                            	{
                                            		module: "updatenotification",
                                            		position: "top_bar"
                                            	},
                                            	{
                                            		module: "clock",
                                            		position: "top_left"
                                            	},
                                            	{
                                            		module: "calendar",
                                            		header: "US Holidays",
                                            		position: "top_left",
                                            		config: {
                                            			calendars: [
                                            				{
                                            					symbol: "calendar-check-o ",
                                            					url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
                                            				}
                                            			]
                                            		}
                                            	},
                                            	{
                                            		module: "MMM-Trello",
                                            		position: "lower_third"
                                            		config: {
                                            			api_key: "**************",
                                            			token: "https://trello.com/1/authorize?expiration=never&scope=read&response_type=token&name=Server%20Token&key=**********",
                                            			list: "************"
                                            	},
                                            	{
                                            		module: "currentweather",
                                            		position: "top_right",
                                            		config: {
                                            			location: "Chicago",
                                            			locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
                                            			appid: "YOUR_OPENWEATHER_API_KEY"
                                            		}
                                            	},
                                            	{
                                            		module: "weatherforecast",
                                            		position: "top_right",
                                            		header: "Weather Forecast",
                                            		config: {
                                            			location: "Chicago",
                                            			locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
                                            			appid: "YOUR_OPENWEATHER_API_KEY"
                                            		}
                                            	},
                                            	{
                                            		module: "newsfeed",
                                            		position: "bottom_bar",
                                            		config: {
                                            			feeds: [
                                            				{
                                            					title: "Chicago",
                                            					url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                                            				}
                                            			],
                                            			showSourceTitle: true,
                                            			showPublishDate: true
                                            		}
                                            	},
                                            ]
                                            

                                            };

                                            /*************** DO NOT EDIT THE LINE BELOW ***************/
                                            if (typeof module !== “undefined”) {module.exports = config;}

                                            strawberry 3.141S 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
                                            • 1 / 2
                                            • 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