• 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
  1. Home
  2. AndrewS097
  3. Posts
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
A
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 2
  • Posts 6
  • Groups 0

Posts

Recent Best Controversial
  • Purchasing a Frame

    Hello everyone, I recently just finished all the modules on my computer and purchased my mirror and monitor. My mirror is 12x24 inch was curious on where I could purchase a frame. I’d prefer not wood cutting and kind of a ready to go frame as I am not very good with tools. (Location: United States California)
    Mirror Link

    posted in Troubleshooting
    A
    AndrewS097
    Apr 10, 2019, 1:45 AM
  • RE: Having trouble showing modules.

    @Mykle1 After hours of debugging I cannot believe that was it! Thank you so much haha. Both issues have been fixed

    posted in Troubleshooting
    A
    AndrewS097
    Apr 10, 2019, 12:33 AM
  • RE: Having trouble showing modules.

    @sdetweil I did install them and after installing them i modified the config file accordingly0_1554854538998_7a9f3c0b-a17b-4dc1-8f2c-335d39f640dd-image.png

    posted in Troubleshooting
    A
    AndrewS097
    Apr 10, 2019, 12:02 AM
  • RE: Having trouble showing modules.
    /* 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: 24,
    	units: "metric",
    
    	modules: [
    		{
    			module: "clock",
    			position: "top_left"
    		},
    		{
    			module: "calendar",
    			header: "US Holidays",
    			position: "top_left",
    			config: {
    				calendars: [
    					{
    						symbol: "calendar",
    						url: "https://www.calendarlabs.com/templates/ical/US-Holidays.ics"
    					}
    				]
    			}
    		},
    		{
    		module: 		'MMM-3Day-Forestcast',
    		position: 		'top_right',
    			config:{
    				api_key:	'xxxxxxxxx',
    				lat : 		34.092232,
    				lon :		-117.435051,
    				units : 	'M',
    				lang: 		'en',
    				interval: 900000
    }
    },
    		{
    				module : "MMM-DailyPokemon",
    				postion:"top_right",
    				config:{ updateInterval:86400000,
    				grayscale: true,
    				minPoke: 1,
    				maxPoke: 802,
    				showType:true,
    				stats:true
    				}
    				},
    		{
    			module: "compliments",
    			position: "lower_third"
    		},
    		
    	]
    
    };
    
    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== "undefined") {module.exports = config;}
    
    

    updated code block sorry new to forum

    posted in Troubleshooting
    A
    AndrewS097
    Apr 9, 2019, 11:30 PM
  • Having trouble showing modules.

    For some reason only the compliment, the calendar and the time show. The default weather ones never showed, the new added weather one does not show, and a Pokemon one does not show. Any advice on what actions I can take are appreciated. The magic mirror is up to date.

    /* 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: 24,
    units: "metric",
    
    modules: [
    	{
    		module: "clock",
    		position: "top_left"
    	},
    	{
    		module: "calendar",
    		header: "US Holidays",
    		position: "top_left",
    		config: {
    			calendars: [
    				{
    					symbol: "calendar",
    					url: "https://www.calendarlabs.com/templates/ical/US-Holidays.ics"
    				}
    			]
    		}
    	},
    	{
    	module: 		'MMM-3Day-Forestcast',
    	position: 		'top_right',
    		config:{
    		api_key:	'zzzzzzzzzzzzzzzzzzzzzz', //taken out for paste![alt text](![image url](![image url](image url)))
    			lat : 		34.092232,
    			lon :		-117.435051,
    			units : 	'M',
    			lang: 		'en',
    			interval: 900000
    

    }
    },
    {
    module : “MMM-DailyPokemon”,
    postion:“top_right”,
    config:{ updateInterval:86400000,
    grayscale: true,
    minPoke: 1,
    maxPoke: 802,
    showType:true,
    stats:true
    }
    },
    {
    module: “compliments”,
    position: “lower_third”
    },

    ]
    

    };

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

    0_1554851169511_MagicMirror.JPG

    posted in Troubleshooting
    A
    AndrewS097
    Apr 9, 2019, 11:11 PM
  • 1 / 1
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