MMM-Carousel
MMM-Carousel copied to clipboard
Slides are blank
I'm new to the MagicMirror and Rasberry PI scene. Can someone help me understand why when I run the module all I see are blank pages? I see the bottom page indicator cycling through the three pages but each page is blank. Before I added in the MMM-Carousel module all the individual modules worked correctly.
modules: [
{
module: "MMM-Carousel",
position: "bottom_bar", // Required only for navigation controls
config: {
transitionInterval: 10000,
showPageIndicators: true,
showPageControls: true,
ignoreModules: ["alert","updatenotification"],
mode: "slides",
slides: {
"1": [{name:'clock',classes:'', position:'middle_center'}]
"2": [
{name:'clock', classes:'', position:"top_left"},
{name: 'calendar', header: "US Holidays", position: "top_left",
config: {calendars: [{fetchInterval: 7 * 24 * 60 * 60 * 1000, symbol: "calendar-check", url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics"}]}},
{name:'compliments', position:"lower_third"},
{name:'weather', position:"top_right",
config: {weatherProvider: "openmeteo", type: "current", lat: xx.xxxxxx, lon: -xx.xxxxxx, tempUnits: 'imperial'}},
{name:'weather', position:"top_right", header: "Weather Forcast",
config: {weatherProvider: "openmeteo", type:"forecast", lat: xx.xxxxxx, lon: -xx.xxxxxx, tempUnits: 'imperial'}}
],
"3": [
{name:'MMM-EasyPix', position: "top_center",
config: {picName: "logo.svg", maxWidth: "100%"}},
{name:"newsfeed", position: "bottom_bar",
config: {
feeds: [{
title: "Cambridge Independent News",
url: "https://www.cambridgeindependent.co.uk/_api/rss/cambridge_independent_news_feed.xml"}],
showSourceTitle: true,
showPublishDate: true,
broadcastNewFeeds: true,
broadcastNewsUpdates: true}}
]
}
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") { module.exports = config; }