i test mm-pages and duplicate the MMM-Todo and the calendar but the calendar modul is not showing something, on the page where i set todo to right it is to see ?
/* Magic Mirror Config Sample
 *
 * By Michael Teeuw https://michaelteeuw.nl
 * MIT Licensed.
 *
 * For more information on how you can configure this file
 * See https://github.com/MichMich/MagicMirror#configuration
 * 
 * !! ACHTUNG Die config.js.template muss bearbeitet werden !! 
 * Link zur CSS Aufteilung: https://forum.magicmirror.builders/topic/286/regions
 */
var config = {
	address: "0.0.0.0", 	// 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 or empty, is "localhost"
	port: 8080,					// Default 8080
	basePath: "/", 	// The URL path where MagicMirror is hosted. If you are using a Reverse proxy
					// you must set the sub path here. basePath must end with a /
	ipWhitelist: [], 	// Set [] to allow all IP addresses ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.0/24"]
															// 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"],
	useHttps: false, 		// Support HTTPS or not, default "false" will use HTTP
	httpsPrivateKey: "", 	// HTTPS private key path, only require when useHttps is true
	httpsCertificate: "", 	// HTTPS Certificate path, only require when useHttps is true
	language: "de",
	logLevel: ["INFO", "LOG", "WARN", "ERROR"],
	timeFormat: 24,
	units: "metric",
	// serverOnly: true/false/"local" ,
	// local for armv6l processors, default
	// starts serveronly and then starts chrome browser
	// false, default for all NON-armv6l devices
	// true, force serveronly mode, because you want to.. no UI on this device
	modules: [
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Beginn: Modul um die Aktuelle Page in der Übersicht anzuzeigen
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 {
 module: "MMM-page-indicator",
 //pages: {all: "bottom_center"},
		position: "bottom_center",
		config: {
		carouselId: 510
		}
		
 },
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul um die Aktuelle Page in der Übersicht anzuzeigen
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Beginn: Motivationstext
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
	module: "helloworld",
	//pages: {"all": "top_center"},
	position: "top_center",
		config: {
		carouselId: 520 ,
		text: "Motivation juhu"	
		}
},
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Motivationstext
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Begin: Modul zur Wetter INformation:
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
	module: "currentweather",
	//pages: {all: "bottom_center"},
	position: "bottom_center",
	header: "Heute",
	config: {
		carouselId: 530 ,
		location: "Kerzenheim",
		locationID: "2891480", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
		appid: "daf92bc5adeb64ee90406481ab2289b0",
		units: "metric",
		degreeLabel: true,
		timeFormat: "24",
		lang: "de"
	}
},
{
	module: "weatherforecast",
	//pages: {all: "bottom_center"},
	position: "bottom_center",
	header: "Vorhersage",
	config: {
		carouselId: 540 ,
		location: "Kerzenheim",
		locationID: "2891480", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
		appid: "daf92bc5adeb64ee90406481ab2289b0",
		units: "metric",
		degreeLabel: true,
		timeFormat: "24",
		lang: "de"
	}
},
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul zur Wetter INformation:
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Begin: Modul um RSS Feeds einzubinden: alle Seiten
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
	module: "newsfeed",
	//pages: {all: "bottom_bar"},
	position: "bottom_bar",
	header: "News",
		config: {
		carouselId: 550 ,
		showSourceTitle: true,
		showPublishDate: true,
		showAsList: true,
		maxNewsItems: 4,
		ignoreOldItems: true,
		ignoreOlderThan: 604800000,
			feeds: [
			{
					title: "Weierhof",
					url: "https://www.weierhof.de/feed/"
			},
			{
					title: "Webindividualschule",
					url: "http://fetchrss.com/rss/6146348142e4574b423ea3c26146346d1410593c18432932.xml"
			},
		],
	}
},
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul um RSS Feeds einzubinden: Alle Seiten
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Begin: Modul um Tasks per webcal auszulesen für die nächsten 1 Tage
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
			module: "MMM-ToDo10",
			header: "Familie Heute",
			//pages: {FamilieHeute: "top_left"},
			position: "top_left",
			config: {
				carouselId: 10 ,
				maximumEntries: 14,
				maximumNumberOfDays: 1,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/familie.ics",
					},					
						]
			}
		},
{
			module: "MMM-ToDo11",
			header: "Papa Heute",
			//pages: {PapaHeute: "top_left"},
			position: "top_left",
			config: {
				carouselId: 11 ,
				maximumEntries: 14,
				maximumNumberOfDays: 1,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/papa.ics",
					},					
						]
			}
		},	
{
			module: "MMM-ToDo12",
			header: "Aufgaben Mama Heute",
			//pages: {MamaHeute: "top_left"},
			position: "top_left",
			config: {
				carouselId: 12 ,
				maximumEntries: 14,
				maximumNumberOfDays: 1,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/mama.ics",
					},					
						]
			}
		},	
{
			module: "MMM-ToDo13",
			header: "Aufgaben Leon Heute",
			//pages: {LeonHeute: "top_left"},
			position: "top_left",
			config: {
				carouselId: 13 ,
				maximumEntries: 14,
				maximumNumberOfDays: 1,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/leon.ics",
					},					
						]
			}
		},
{
			module: "MMM-ToDo14",
			header: "Aufgaben Silas Heute",
			//pages: {SilasHeute: "top_left"},
			position: "top_left",
			config: {
				carouselId: 14 ,
				maximumEntries: 14,
				maximumNumberOfDays: 1,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/silas.ics",
					},					
						]
			}
		},		
{
			module: "MMM-ToDo15",
			header: "Aufgaben Samuel",
			//pages: {SamuelHeute: "top_left"},
			position: "top_left",
			config: {
				carouselId: 15 ,
				maximumEntries: 14,
				maximumNumberOfDays: 1,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/samuel.ics",
					},					
						]
			}
		},
{
			module: "MMM-ToDo16",
			header: "Offene Aufgaben",
			//pages: {Offen: "top_right"},
			position: "top_right",
			config: {
				carouselId: 16 ,
				maximumEntries: 14,
				maximumNumberOfDays: 1,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/offen.ics",
					},					
						]
			}
		},
{
			module: "MMM-ToDo17",
			header: "Offene wichtige und dringende Aufgaben",
			//pages: {Offen: "top_left"},
			position: "top_left",
			config: {
				carouselId: 17 ,
				maximumEntries: 14,
				maximumNumberOfDays: 1,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/offen-wichtig.ics",
					},					
						]
			}
		},
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul um Tasks per webcal auszulesen für die nächsten 1 Tage
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Begin: Modul um Tasks per webcal auszulesen für die nächsten 7 Tage
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
			module: "MMM-ToDo20",
			header: "Aufgaben diese Woche",
			//pages: {FamilieHeute: "bottom_left"},
			position: "bottom_left",
			config: {
				carouselId: 20 ,
				maximumEntries: 11,
				maximumNumberOfDays: 7,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/familie.ics",
					},					
						]
			}
		},
{
			module: "MMM-ToDo21",
			header: "Aufgaben diese Woche",
			//pages: {PapaHeute: "bottom_left"},
			position: "bottom_left",
			config: {
				carouselId: 21 ,
				maximumEntries: 11,
				maximumNumberOfDays: 7,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/papa.ics",
					},					
						]
			}
		},	
{
			module: "MMM-ToDo22",
			header: "Aufgaben diese Woche",
			//pages: {MamaHeute: "bottom_left"},
			position: "bottom_left",
			config: {
				carouselId: 22 ,
				maximumEntries: 11,
				maximumNumberOfDays: 7,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/mama.ics",
					},					
						]
			}
		},	
{
			module: "MMM-ToDo23",
			header: "Aufgaben diese Woche",
			//pages: {LeonHeute: "bottom_left"},
			position: "bottom_left",
			config: {
				carouselId: 23 ,
				maximumEntries: 11,
				maximumNumberOfDays: 7,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/leon.ics",
					},					
						]
			}
		},
{
			module: "MMM-ToDo24",
			header: "Aufgaben diese Woche",
			//pages: {SilasHeute: "bottom_left"},
			position: "bottom_left",
			config: {
				carouselId: 24 ,
				maximumEntries: 11,
				maximumNumberOfDays: 7,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/silas.ics",
					},					
						]
			}
		},		
{
			module: "MMM-ToDo25",
			header: "Aufgaben diese Woche",
			//pages: {SamuelHeute: "bottom_left"},
			position: "bottom_left",
			config: {
				carouselId: 25 ,
				maximumEntries: 11,
				maximumNumberOfDays: 7,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: false,
				hideCompleted: true,
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/samuel.ics",
					},					
						]
			}
		},
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul um Tasks per webcal auszulesen für die nächsten 7 Tage
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Begin: Modul um Termine auszulesen für die nächsten 1 Tage
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
			module: "calendar30",
			header: "Termine Familie Heute",
			//pages: {FamilieHeute: "top_right"},
			position: "top_right",
			config: {
				carouselId: 30 ,
				maximumNumberOfDays: 1,
				maximumEntries: 11,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/familie_cal.ics",
					},					
						]
			}
		},		
		{
			module: "calendar31",
			header: "Termine Mama Heute",
			//pages: {MamaHeute: "top_right"},
			position: "top_right",
			config: {
				carouselId: 31 ,
				maximumNumberOfDays: 1,
				maximumEntries: 11,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/mama_cal.ics",
					},							
						]
			}
		},
		{
			module: "calendar32",
			header: "Termine Papa Heute",
			//pages: {PapaHeute: "top_right"},
			position: "top_right",
			config: {
				carouselId: 32 ,
				maximumNumberOfDays: 1,
				maximumEntries: 11,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/papa_cal.ics",
					},		
											
						]
			}
		},	
		
		{
			module: "calendar33",
			header: "Termine Leon Heute",
			//pages: {LeonHeute: "top_right"},
			position: "top_right",
			config: {
				carouselId: 33 ,
				maximumNumberOfDays: 1,
				maximumEntries: 11,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/leon_cal.ics",
					},				
											
						]
			}
		},	
		
		{
			module: "calendar34",
			header: "Termine Silas Heute",
			//pages: {SilasHeute: "top_right"},
			position: "top_right",
			config: {
				carouselId: 34 ,
				maximumNumberOfDays: 1,
				maximumEntries: 11,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[			
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/silas_cal.ics",
					},									
						]
			}
		},
		
		{
			module: "calendar35",
			header: "Termine Samuel Heute",
			//pages: {SamuelHeute: "top_right"},
			position: "top_right",
			config: {
				carouselId: 35 ,
				maximumNumberOfDays: 1,
				maximumEntries: 11,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[			
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/samuel_cal.ics",
					},				
											
						]
			}
		},
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul um Termine auszulesen für die nächsten 1 Tage
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Begin: Modul um Termine auszulesen für die nächsten 7 Tage
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
			module: "calendar40",
			header: "Termine diese Woche",
			//pages: {FamilieHeute: "bottom_right"},
			position: "bottom_right",
			config: {
				carouselId: 40 ,
				maximumNumberOfDays: 7,
				maximumEntries: 12,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/familie_cal.ics",
					},					
						]
			}
		},	
		
		{
			module: "calendar41",
			header: "Termine diese Woche",
			//pages: {MamaHeute: "bottom_right"},
			position: "bottom_right",
			config: {
				carouselId: 41 ,
				maximumNumberOfDays: 7,
				maximumEntries: 12,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/mama_cal.ics",
					},							
						]
			}
		},	
		{
			module: "calendar42",
			header: "Termine diese Woche",
			//pages: {PapaHeute: "bottom_right"},
			position: "bottom_right",
			config: {
				carouselId: 42 ,
				maximumNumberOfDays: 7,
				maximumEntries: 12,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/papa_cal.ics",
					},		
											
						]
			}
		},		
		
		{
			module: "calendar43",
			header: "Termine diese Woche",
			//pages: {LeonHeute: "bottom_right"},
			position: "bottom_right",
			config: {
				carouselId: 43 ,
				maximumNumberOfDays: 7,
				maximumEntries: 12,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/leon_cal.ics",
					},				
											
						]
			}
		},	
		
		{
			module: "calendar44",
			header: "Termine diese Woche",
			//pages: {SilasHeute: "bottom_right"},
			position: "bottom_right",
			config: {
				carouselId: 44 ,
				maximumNumberOfDays: 7,
				maximumEntries: 12,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[			
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/silas_cal.ics",
					},									
						]
			}
		},
		
		{
			module: "calendar45",
			header: "Termine diese Woche",
			//pages: {SamuelHeute: "bottom_right"},
			position: "bottom_right",
			config: {
				carouselId: 45 ,
				maximumNumberOfDays: 7,
				maximumEntries: 12,
				broadcastEvents: false,
				maxTitleLength: 50,
				wrapEvents: false,
				maxTitleLines: 1,
				fetchInterval: 150000,
				hidePrivate: true,
				hideOngoing: true,
				excludedEvents: ["Abgesagt:"],
				showLocation: false,
				fade: false,
				colored: false,
				coloredSymbolOnly: false,
				displaySymbol: false,
				calendars: 	[			
					{
						url: "http://localhost:8080/modules/MMM-ToDo/nextcloudexport/export/samuel_cal.ics",
					},				
											
						]
			}
		},
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul um Termine auszulesen für die nächsten 7 Tage
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Beginn: Modul für die Fernsteuerung per Webrowser
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
 module: 'MMM-Remote-Control',
 // uncomment the following line to show the URL of the remote control on the mirror
 // position: "top_bar",
 // you can hide this module afterwards from the remote control itself
 config: {
		carouselId: 680 ,
 customCommand: {}, // Optional, See "Using Custom Commands" below
 showModuleApiMenu: true, // Optional, Enable the Module Controls menu
 secureEndpoints: false, // Optional, See API/README.md
 // uncomment any of the lines below if you're gonna use it
 customMenu: "custom_menu.json", // Optional, See "Custom Menu Items" below 
	// apiKey: "", // Optional, See API/README.md for details
 // classes: {} // Optional, See "Custom Classes" below
	}
},
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul für die Fernsteuerung per Webrowser
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Beginn: Modul das Bewegung über die Kamera erkennt
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
 module: 'MMM-SleepWake',
	// pages: {all: "bottom_bar"}, 
	config:{
 carouselId: 690 ,
	 delay: '14', // amount of time with no motion before sleeping, in minutes
 mode: 'PI',
 pi_on: 'wget http://192.168.1.241:8083/fhem?cmd=set%20FamilienplanerTV%20on -O /dev/null',
 pi_off: 'wget http://192.168.1.241:8083/fhem?cmd=set%20FamilienplanerTV%20off -O /dev/null'
 }
},
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul das Bewegung über die Kamera erkennt
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Beginn: Modul zur Nutzung mehrere Pages
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
        module: 'MMM-pages',
        config: {
                modules:
                    [[ "MMM-ToDo10", "MMM-ToDo20", "calendar30", "calendar40"],
                     [ "MMM-ToDo11", "MMM-ToDo21", "calendar31", "calendar41"],
		     [ "MMM-ToDo12", "MMM-ToDo22", "calendar32", "calendar42"],
		     [ "MMM-ToDo13", "MMM-ToDo23", "calendar33", "calendar43"],
		     [ "MMM-ToDo14", "MMM-ToDo24", "calendar34", "calendar44"],
		     [ "MMM-ToDo15", "MMM-ToDo25", "calendar35", "calendar45"],
		     [ "MMM-ToDo16", "MMM-ToDo26", "calendar30", "calendar40"]],
                fixed: ["helloworld", "MMM-page-indicator", "newsfeed", "currentweather", "weatherforecast"],
                //hiddenPages: {
                //    "screenSaver": [ "clock", "MMM-SomeBackgroundImageModule" ],
                //    "admin": [ "MMM-ShowMeSystemStatsModule", "MMM-AnOnScreenMenuModule" ],
                //},
		rotationTime: 10000,
        }
    }
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: Modul zur Nutzung mehrere Pages
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Ende: aller Module
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}




