MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. henryluyu
    H
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    henryluyu

    @henryluyu

    0
    Reputation
    187
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    henryluyu Unfollow Follow

    Latest posts made by henryluyu

    • RE: MMM-forecast-io -- Localized up to the minute weather

      Hi this is this module in my config.js.
      I simply put the “MMM-forecast-io-master” folder in /modules/default, I have also put my actual api key, latitude and longtitude values also in MMM-forecast-io.js. But no weather is showing, other modules working fine. Can anyone help please?

      	{
                          module: 'MMM-forecast-io',
                          position: 'top_right',  
                          config: {
                                 apiKey: 'MYAPIKEY',
                                 latitude:   53.4839,
                                 longitude:  -2.2446
                          }
                  },
      
      posted in Utilities
      H
      henryluyu
    • Current weather not displaying

      Hi this is my config.js:
      *I have removed appid
      weather forecast works fine but current weather does not show. I did not change anything in the module (downloaded from https://github.com/MichMich/MagicMirror#configuration), I only changed city name, appid and position.
      Also I noticed in the video (https://www.youtube.com/watch?v=pcmjht0Hqvw&t=680s), at 10.29 there also isn’t a current weather showing.

      Can anyone help please?

      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: "en",
      	timeFormat: 24,
      	units: "Metric",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "Manchester, GB",
      				locationID: "2643123",  //ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city
      				appid: "REMOVED"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_left",
      			header: "Weather Forecast",
      			config: {
      				location: "Manchester",
      				locationID: "2643123",  //ID from https://openweathermap.org/city
      				appid: "REMOVED"
      			}
      		},
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title: "BBC",
      						url: "http://feeds.bbci.co.uk/news/rss.xml"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in Troubleshooting
      H
      henryluyu