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

Posts

Recent Best Controversial
  • RE: mm-system-temperature

    Thanks!
    Why could I not find it?
    Peter

    posted in Troubleshooting
    P
    Peter
    Dec 23, 2017, 1:44 PM
  • RE: mm-system-temperature

    Please, can somebody tell me where I can find this module?
    I have been searching …
    Peter

    posted in Troubleshooting
    P
    Peter
    Dec 23, 2017, 12:25 PM
  • RE: MMM-NOAA - Another Weather Module

    @tbbear thanks!
    Peter

    posted in System
    P
    Peter
    Dec 16, 2017, 8:15 PM
  • RE: MMM-NOAA - Another Weather Module

    This module works perfect … almost …
    Is it possible to change CET in alerts to MET ( I use the Dutch translation)?
    Peter

    posted in System
    P
    Peter
    Dec 16, 2017, 8:00 PM
  • RE: MMM-EARTH

    @Mykle1 I removed the empty module name and the ID.
    Earth is turning, but I will take your advice to turn off the fading!
    I am learning every minute!
    Great!
    Peter

    posted in Education
    P
    Peter
    Dec 13, 2017, 9:21 PM
  • RE: MMM-EARTH

    @Mykle1 thanks!
    It does not look like rotating.
    It goes black (fades to black) and comes back again.
    I will look at the other things you mention.
    Peter

    posted in Education
    P
    Peter
    Dec 13, 2017, 9:05 PM
  • RE: MMM-EARTH

    Another old Noob trying to learn …
    I just started RPI and MM last week, changed some basic things in my config file.
    But EARTH will not turn (it is static).
    Can somebody have a look?

    /* 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: "nl",
    	timeFormat: 24,
    	units: "metric",
    
    	modules: [
    		{
        			module: "MMM-EARTH",
        			position: "top_center",
        			config: {
            		mode: "Natural",
            		rotateInterval: 15000,
            		MaxWidth: "20%",
            		MaxHeight: "20%",
        		}
    		},
    		{
    			module: "updatenotification",
    			position: "top_bar"
    		},
    		{
    			module: "clock",
    			position: "top_left"
    		},
    		{
    			module: "calendar",
    			header: "Feestdagen",
    			position: "top_left",
    			config: {
    				calendars: [
    					{
    						symbol: "calendar-check-o ",
    						url: "https://www.mozilla.org/media/caldata/DutchHolidays.ics"
    					}
    				]
    			}
    		},
    		{
    			module: "",
    			position: "lower_third"
    		},
    		{
    			module: "currentweather",
    			position: "top_right",
    			config: {
    				location: "Apeldoorn,Netherlands",
    				locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
    				appid: "Xxxxxxxxxx"
    			}
    		},
    		{
    			module: "weatherforecast",
    			position: "top_right",
    			header: "Weersvoorspelling",
    			config: {
    				location: "Apeldoorn,Netherlands",
    				locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
    				appid: "Xxxxxxxx"
    			}
    		},
    		
    		{
    			module: "newsfeed",
    			position: "bottom_bar",
    			config: {
    				feeds: [
    					{
    						title: "Nu.nl",
    						url: "http://www.nu.nl/rss/Algemeen"
    					}
    				],
    				showSourceTitle: true,
    				showPublishDate: true
    			}
    		},
    	]
    
    };
    
    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== "undefined") {module.exports = config;}
    
    

    Thanks!
    Peter

    posted in Education
    P
    Peter
    Dec 13, 2017, 6:13 PM
  • RE: 1 old noob + 1 rPi = I can't believe I did it! (revisited)

    @Mykle1 Thanks for the Calendar; I will try that.
    Autostart: I followed the instructions several times, but it does not work.
    It will work one day …
    Isn’t this what makes a project so nice to work on: trying until the magic happens?
    Peter

    posted in Show your Mirror
    P
    Peter
    Dec 11, 2017, 4:42 PM
  • RE: 1 old noob + 1 rPi = I can't believe I did it! (revisited)

    @Lepracon68 that would be nice!
    Peter

    posted in Show your Mirror
    P
    Peter
    Dec 11, 2017, 4:40 PM
  • RE: 1 old noob + 1 rPi = I can't believe I did it! (revisited)

    Thanks to you and Michael Teeuw the MM is the best project for RPI I have ever seen.
    I appreciate your interest and help.
    I just succeeded in adding a MMM (Earth)( happy me!).
    Things that do not work up till now: MM does not start automatically and I still have to find out how to combine two Calendars.
    Peter

    posted in Show your Mirror
    P
    Peter
    Dec 11, 2017, 4:22 PM
  • 1
  • 2
  • 18
  • 19
  • 20
  • 21
  • 22
  • 21 / 22
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