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

    Posts

    Recent Best Controversial
    • RE: Modules won't show up on mirror?

      @Mykle1 I just now got around to trying everything. I copied and pasted the default .cs files from all the original modules and that seemed to do the trick. All of them are working now the way I want them to. Thanks so much for all your help

      posted in Troubleshooting
      B
      bmbaugh
    • RE: Modules won't show up on mirror?

      @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

      posted in Troubleshooting
      B
      bmbaugh
    • RE: Modules won't show up on mirror?

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

      posted in Troubleshooting
      B
      bmbaugh
    • RE: Modules won't show up on mirror?
      /* 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;}
      
      
      posted in Troubleshooting
      B
      bmbaugh
    • RE: Modules won't show up on mirror?

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

      posted in Troubleshooting
      B
      bmbaugh
    • Modules won't show up on mirror?

      I am completely new to this, and am building a magic mirror for my girlfriend for Christmas. I have everything done, and have even put Alexa on my pi, but for whatever reason I am having trouble loading the modules and the only ones that are working are the ones that are turned on by default, the messages, holidays, and news feed at the bottom. How do I turn on the other ones, such as clock? I tried adding it to the array in config.js but nothing showed up, any ideas?

      posted in Troubleshooting
      B
      bmbaugh
    • 1 / 1