Read the statement by Michael Teeuw here.
MMM-Scenes not working with Calendars
-
Im new to all this. Ive managed to figure a lot of this out but I cant figure out why MMM-scenes wont work with my calendar modules. Is it due to MMM-CalendarExt3? If so is there a work around? Ill add the code to the calendar here.
I finally got it to work after removing the code below:
{
module: “MMM-CalendarExt3”,
position: “bottom”,
title: “”,
config: {
mode: “week”,
instanceId: “basicCalendar”,
locale: ‘en-US’,
maxEventLines: 5,
firstDayOfWeek: 0,
calendarSet: [‘apple’,‘outlook’],
weekIndex: -1,
weeksInView: 4,
fontSixe: ‘10px’,
eventHeight: ‘25px’,
}
},{ module: "calendar", header: "Upcoming Sports", position: "top_left", config: { calendars: [ { symbol: "", url: "https://calendar.google.com/calendar", name: "race", }, { symbol: "", url: "https://calendar.google.com/calendar/ic", name: "stars", } ] } }, { module: "calendar", header: "apple", position: "", config: { calendars: [ { symbol: "", url: "webcal://p137-caldav.icloud.com/published/2/MTAzNz", name: "apple", }, { symbol: "", url: "https://outlook.live.com/owa/", name: "outlook", }, ] } },
-
@hawkeyepilot69
Could you send me the full config.js? eouia0819@gmail.comI’m in business trip now, so I’ll see a few days later.
-
@MMRIZE I got the scenes to work. It seems like it has a problem when i try to set two different groups of calendars. One group for the default calendar and another default calendar group for my MMM-CalendarExt3 to use. I dont want to see all the calendars on the default calendar but the only way to get everything to work is to have all of them there. I was trying to have 2 separate default calendars, one that is shown for 2 certain calendars and the other that is hidden to display the events I want to see on my MMM-calendarExt3. How can I go about hiding some events on the default calendar or creating 2 default calendars one that is shown and one that is not?```
{
module: “calendar”,
header: “Upcoming Sports”,
position: “top_left”,
classes:“scene3”,
hiddenOnStartup: true,
config: {
colored: true,
calendars: [
{
symbol: “”,
url: “”,
name: “race”,}, { symbol: "", url: "", name: "stars", color: "#03C04A", }, { symbol: "", url: "", name: "apple", }, { symbol: "", url: "", name: "outlook", }, ] } },
I want to see the "race" and "stars" schedule in the default calendar and "apple" and "outlook" in my MMM-CalendarExt3. this is the way I have it currently set up.
-
@hawkeyepilot69
So now the issue is not the Scene thing but calendar thing how to manage to show only special events or calendars, right? -
I want to see the “race” and “stars” schedule in the default calendar and “apple” and “outlook” in my MMM-CalendarExt3. this is the way I have it currently set up.
-
To show only specific calendars in CX3, you can use
calendarSet: [...],
, In your case;
calendarSet: ["apple", "outlook"],
would be. -
To hide specific calendars in default calendar module; as far as I know, there is no feature in the default calendar module. Sorry, that is not my fault.
2-1. But if you use two instances of the default calendar module, one with “race” and “stars”, the other with “apple” and “outlook”, you can hide one by CSS adjusting or removing
position
value. -
-
@MMRIZE thank you. I got everything working great now. Thanks for all your help.