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

Posts

Recent Best Controversial
  • RE: sample config and clock

    @strawberry-3.141 Thank you so much, that helped me alot :thumbsup:

    posted in Troubleshooting
    E
    emos
    Feb 8, 2017, 4:47 PM
  • RE: sample config and clock

    @strawberry-3.141
    Thank you, it did the trick :)

    I see that you have removed the ‘,’ behind ‘false’. The last argument, or string, is that the only one that’s not suppose to have an ‘,’ at the end?

    posted in Troubleshooting
    E
    emos
    Feb 8, 2017, 4:02 PM
  • sample config and clock

    Hello, I came a cross a topic on this forum saying that all you need to remove the second from the clock is

    config: { 
    displaySeconds: false, 
    }
    

    I stared out with the sample.config, added the info for seconds. When i start up the mirror now it just says i need to create a config. wtf?

    This is the full config

    /* Magic Mirror Config Sample
     *
     * By Michael Teeuw http://michaelteeuw.nl
     * MIT Licensed.
     */
    
    var config = {
            port: 8080,
            ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.1/120"],
    
            language: 'nb',
            timeFormat: 24,
            units: 'metric',
    
            modules: [
                    {
                            module: 'alert',
                    },
                    {
                            module: "updatenotification",
                            position: "top_bar"
                    },
                    {
                            module: 'clock',
                            position: 'top_left'
                            config: {
                                    displaySeconds: false,
                                    }
                    },
                    {
                            module: 'calendar',
                            header: 'US Holidays',
                            position: 'top_left',
                            config: {
                                    calendars: [
                                            {
                                                    symbol: 'calendar-check-o ',
                                                    url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
                                            }
                                    ]
                            }
                    },
                    {
                            module: 'compliments',
                            position: 'lower_third'
                    },
                    {
                            module: 'currentweather',
                            position: 'top_right',
                            config: {
                                    location: 'New York',
                                    locationID: '',  //ID from http://www.openweathermap.org
                                    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
                                    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
    E
    emos
    Feb 8, 2017, 3:24 PM
  • 1
  • 2
  • 2 / 2
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