MMM-Page-Selector icon indicating copy to clipboard operation
MMM-Page-Selector copied to clipboard

Loads Blank Screen when using Calendars

Open allarna opened this issue 3 years ago • 0 comments

Hi Veldrovive,

I'm having an issue where 'MMM-Page-Selector' will show only a blank/black screen if I include any of my calendar modules. However, the moment I remove them all MMMPS loads perfectly fine. Happens with both the default 'calendar' and 'MMM-CalendarExt2'. The calendars also run fine without MMMPS installed.

Any ideas on what could be the cause? I'm running the latest MM (2.15.0) and MMMPS versions.

Here's my basic config: ` modules: [

	{
		module: "MMM-Page-Selector",
		position: "top_center",
		config: {
			defaultPage: "main",
			displayTitle: false,
			selectPageNotif: ["SELECT_PAGE"],
			incrementPageNotif: ["PAGE_UP"],
			decrementPageNotif: ["PAGE_DOWN"],
		persistentPages: true,
		autoChange: {
			interval: 45
		}
		}
	},

	{
		module: "clock",
		pages: {main: "middle_center"},
		// position: "middle_center",
		config: {
			displaySeconds: false,
			displayType: "digital",
			clockBold: false,
			showSunTimes: false, 
			showMoonTimes: false,
			timeFormat: 24,
			lat: "X",
			lon: "Y",
			showDate: true,
			showWeek: false,
		}
	},	
    	
	{
		module: "calendar",
		header: "US Holidays",
		pages: {"all": "top_left"},
        // position: "top_left",
		config: {
			calendars: [
				{
					symbol: "calendar-check",
					url: "https://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics"
				}
			]
		}
	},

	{
		module: "MMM-page-indicator",
		pages: {"all": "bottom_bar"},
		// position: "bottom_bar",
	},			
]

`

allarna avatar Apr 28 '21 15:04 allarna