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

Modules won't show up on mirror?

Scheduled Pinned Locked Moved Troubleshooting
19 Posts 5 Posters 8.5k Views 4 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.
  • B Offline
    bmbaugh @broberg
    last edited by Dec 26, 2017, 7:19 PM

    This post is deleted!
    1 Reply Last reply Reply Quote 0
    • D Offline
      doubleT Module Developer
      last edited by Dec 26, 2017, 7:25 PM

      Can you edit that and put the tags for code around it?

      B 1 Reply Last reply Dec 26, 2017, 7:34 PM Reply Quote 0
      • B Offline
        bmbaugh @doubleT
        last edited by Dec 26, 2017, 7:34 PM

        @doubleT Ill repost it. for whatever reason it was flagged as spam

        1 Reply Last reply Reply Quote 0
        • B Offline
          bmbaugh
          last edited by Dec 26, 2017, 7:39 PM

          /* 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.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: 12,
          	units: "imperial",
          
          	modules: [
          		{
          			module: "clock",
          			position: "top_left",
          			
          	
          			
          		},
          		{
          			module: "alert",
          		},
          		{
          			module: "updatenotification",
          			position: "top_center"
          		},
          		
          		{
          			module: "calendar",
          			header: "US Holidays",
          			position: "top_right",
          			config: {
          				calendars: [
          					{
          						symbol: "calendar-check-o ",
          						url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
          					}
          				]
          			}
          		},
          		{
          			module: "compliments",
          			position: "lower_third"
          		},
          		{
          			module: "currentweather",
          			position: "bottom_right",
          			config: {
          				location: "New York",
          				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: "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
          			}
          		},
          	]
          
          };
          
          /*************** DO NOT EDIT THE LINE BELOW ***************/
          if (typeof module !== "undefined") {module.exports = config;}
          
          
          1 Reply Last reply Reply Quote 0
          • D Offline
            doubleT Module Developer
            last edited by Dec 26, 2017, 7:52 PM

            (and nested objects and arrays). The last property never gets a comma, these are only separators.

            That’s probably it. The developer console would probably have hinted at that, saying something like the next thing after the comma was expected to be something else.

            While you’re removing the last comma in the clock module’s settings, also remove the three empty lines that follow.

            {
                 module: "clock",
                 position: "top_left" // no comma
            },
            

            another example:

            {
                 module: "clock",
                 position: "top_left", // comma, because "config" follows
                 config: {
                      displayType: "digital" // no comma
                 } // no comma
            },
            
            B 1 Reply Last reply Dec 26, 2017, 8:58 PM Reply Quote 0
            • B Offline
              bmbaugh @doubleT
              last edited by Dec 26, 2017, 8:58 PM

              @doubleT I’ll be able to look at it tomorrow and let you know if that fixes it

              M 1 Reply Last reply Dec 26, 2017, 11:00 PM Reply Quote 0
              • M Offline
                Mykle1 Project Sponsor Module Developer @bmbaugh
                last edited by Dec 26, 2017, 11:00 PM

                @bmbaugh said in Modules won’t show up on mirror?:

                I’ll be able to look at it tomorrow and let you know if that fixes it

                The config that you posted above works, as is. I just tested it. @doubleT is correct about removing the comma and the spaces but those are not causing the config to fail. Is MM failing to launch? Or you are expecting to see something different? I don’t see where you stated what the problem is.

                Create a working config
                How to add modules

                B 1 Reply Last reply Dec 27, 2017, 2:40 AM Reply Quote 0
                • M Offline
                  Mykle1 Project Sponsor Module Developer @homebrew
                  last edited by Mykle1 Dec 26, 2017, 11:06 PM Dec 26, 2017, 11:04 PM

                  @homebrew said in Modules won’t show up on mirror?:

                  For some reason when I edited the actual config.js in text editor it worked! (as opposed to editing the document within Terminal)
                  Thank you!!

                  You’re welcome, mate. You don’t HAVE to use the terminal to edit all files if you are not familiar or comfortable with its use. I prefer notepad++ for Windows (notepadqq for linux) for editing code. There are others. Find one you like. Makes life a whole lot easier.

                  Peace!

                  Create a working config
                  How to add modules

                  1 Reply Last reply Reply Quote 0
                  • B Offline
                    bmbaugh @Mykle1
                    last edited by Dec 27, 2017, 2:40 AM

                    @Mykle1 my config.js works, but the only modules showing on the MM are Holidays, Compliments, and news feed. I didn’t know how to get other ones (such as clock, weather forecast, etc) to display on the MM. My assumption was that they displayed by default (I did the automatic installation). Since they didn’t, i was unsure on how to get them to display where I wanted them to (like having the clock in the top left). That was my main issue. Since I’m new to this, I didn’t know if there was an extra step I needed to take or if they were disabled for whatever reason. I apologize if I haven’t been clear enough as to what was wrong

                    M 1 Reply Last reply Dec 27, 2017, 3:05 AM Reply Quote 0
                    • M Offline
                      Mykle1 Project Sponsor Module Developer @bmbaugh
                      last edited by Dec 27, 2017, 3:05 AM

                      @bmbaugh

                      No worries, mate. Clock should have been displayed by default with the other three you mentioned. weather and weatherforecast require you to get an API key. The directions and url should be in the readme file of those modules. If you modified the clock.js file that may account for it not showing. If that is the case, you can D/L the clock module and replace it.

                      Now, if you want to add 3rd party modules, a good place to learn how to do that is by clicking “How to add modules” in my signature below my post.

                      Come back if you need help after reading that.

                      Create a working config
                      How to add modules

                      B 1 Reply Last reply Dec 29, 2017, 5:15 PM Reply Quote 0
                      • 1
                      • 2
                      • 2 / 2
                      2 / 2
                      • First post
                        13/19
                        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