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

    Posts

    Recent Best Controversial
    • RE: MMM-Wunderlist add / MM won't start

      ok thank you I try your changes and will report asap ;-)

      posted in Troubleshooting
      S
      svonbentzel
    • MMM-Wunderlist add / MM won't start

      Hello together,

      I added the Wunderlist-Module in config.js.

      But when I restart the MM, it shows please create a config file.

      What is wrong with my config.js?

      can please everyone check my file?

      /* Magic Mirror Config 
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
      
      	language: 'de',
      	timeFormat: 24,
      	units: 'metric',
      
      	modules: [
      		{
      			module: 'alert',
      		},
      			{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: 'clock',
      			position: 'top_left'
      		},
      		{
      		        module: 'MMM-Wunderlist',
      		        position: 'top_right',  // This can be any of the regions. Best results in left or right regions.
      		        header: 'Shopping', // This is optional
      		        config: {
      		            // See 'Configuration options' for more information.
      					lists: [“inbox”],
      					accessToken: '0ad48eb706f0xxxxxxxxxx8c4f8def79581'
      					clientID: '046xxxxxxxxxx6a8'
      					fade: false,
      					intervall: 60,
      		        }
      		    }
      		{
      		    module: 'MMM-Globe',
      		    position: 'lower_third',
      		    config: {
      		        style: 'geoColor',
      		        imageSize: 800,
      		        ownImagePath:'',
      		        updateInterval: 10*60*1000
      		    }
      		},
      		{
      			module: 'calendar',
      			header: 'Kalender',
      			position: 'top_left',
      			config: {
      				calendars: [
      					{
      						symbol: 'calendar-check-o ',
      						url: 'https://p36-calendars.icloud.com/published/2/xxxxxxxxX_p'
      					}
      				]
      			}
      		},
      		{
      			module: 'calendar',
      			header: 'Arbeits-Termine',
      			position: 'top_left',
      			config: {
      				calendars: [
      					{
      						symbol: 'calendar-check-o ',
      						url: 'http://kerioxxxxxxx/Calendar'
      					}
      				]
      			}
      		},
      		{
      			module: 'compliments',
      			position: 'lower_third'
      		},
      		{
      			module: 'currentweather',
      			position: 'top_right',
      			config: {
      				location: 'Rosenheim',
      				locationID: '2844988',  //ID from http://www.openweathermap.org
      				appid: '46c0147xxxxxxb7eeb0'
      			}
      		},
      		{
      			module: 'weatherforecast',
      			position: 'top_right',
      			header: 'Wettervorhersage',
      			config: {
      				location: 'Rosenheim',
      				locationID: '2844988',  //ID from http://www.openweathermap.org
      				appid: '46c0147xxxxxx44b7eeb0'
      			}
      		},
      		{
      			module: 'newsfeed',
      			position: 'bottom_bar',
      			config: {
      				feeds: [
      					{
      						title: "Tagesschau",
      						url: "http://www.tagesschau.de/xml/rss2"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]	
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      
      
      posted in Troubleshooting
      S
      svonbentzel
    • 1
    • 2
    • 2 / 2