MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. soshea1
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    S
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 3
    • Groups 0

    soshea1

    @soshea1

    0
    Reputation
    225
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    soshea1 Unfollow Follow

    Latest posts made by soshea1

    • RE: MMM-NOAA - Another Weather Module

      @yawns

      Thank you so much!. Such a small detail caused me hours of pain!

      I must of looked at that config 100 times and didnt spot that!

      posted in System
      S
      soshea1
    • RE: MMM-NOAA - Another Weather Module

      @Mykle1

      Yes i tried using multiple different PWS codes, and still none of them display.

      Ill try upload a picture in a separate reply of what displays.

      Thanks for any help

      /* 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 = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.", "::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", "::1"], // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.****** :
      	                                                       // ["127.0.0.1", "::ffff:127", "::1", "::ffff:192."],
      	                                                       // or IPv4 range of 192. --> 192.1 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.", "::1", "::ffff:192/28"],
      
      	language: "en",
      	timeFormat: 24,
      	units: "metric",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			header: "Canada Holidays",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check-o ",
      						url: "webcal://www.calendarlabs.com/ical-calendar/ics/39/Canada_Holidays.ics"
      					}
      				]
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
      			disabled: true,
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "New York",
      				locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      		},
      		{
      			disabled: true,
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "New York",
      				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: "New York Times",
      						url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      		{
      			disabled: false,
      			module: 'MMM-NOAA',
      			position: "top_right",
      			config: {
      			apiKey: "f78fa7e86*****",
      			useAir: false,
      			psw1: "IONTARIO1060",
      			lat: "43.177",
      			long: "-79.800",
      		}
        		},
      	
      		]
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in System
      S
      soshea1
    • RE: MMM-NOAA - Another Weather Module

      Hey there,

      Im hoping that someone can help me out with an error on this module. I am a complete newbie to this, so please bare with me.

      I have loaded the MMM-NOA module onto the config script, created the API key and selected the PWS on wundermap. However when i load up Magic Mirror- The module displays 'Undefined and NAN with no information loaded. It seems like it is just not pulling the info from the PWS correctly.

      I followed the instructions correctly, but dont seem to be able to fix this.

      Thank you

      posted in System
      S
      soshea1