A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Calendar module not updating
-
The code executes fine on startup. It also updates fine on another Pi3b also running on Wifi. Daily temperature updates just fine. So the question is two-fold. Is there something I can change so the events are updated as they change?
Or alternatively, is it okay to plug the pi into a smart plug that cycles daily?
{ module: "calendar", header: "Upcoming Events", position: "top_left", config: { fade: false, displaySymbol: true, MaxTitleLength: 30, fetchInterval: 10000, displayRepeatingCountTitle: false, colored: true, calendars: [ { maximumNumberOfDays: 22, symbol: "Cleaning", color: "#00ffff", url: "https://calendar.google.com/calendar/ical/3macalester%40gmail.com/private-69b6bd37705fa371daed31b164fac4fb/basic.ics" }, { symbol: "calendar-check", symbol: "Home", url: "https://calendar.google.com/calendar/ical/xxxxxx%40gmail.com/private-33242322e68764d9cdxxxxxxxx2/basic.ics" }, { maximumNumberOfDays: 22, symbol: "Jets", color: "#FFFF00", // blue is 0066CC url: "http://sync.roktcalendar.com/webcal/bf459b5e-d2e6-" }, { maximumNumberOfDays: 22, symbol: "holidays", color: "#009900", // blue is 0066CC url:"https://calendar.google.com/calendar/ical/en.canadian%23holiday%40group.v.calendar.google.com/public/basic.ics" } ] }
-
@cliff365 fetch interval is 10 seconds. WAY too fast. fetch will be rejected
maybe 5 minutes is still too fast
5*60*1000
maybe 10 minutes
10*60*1000
-
@cliff365 no, do NOT turn off without shutdown
-
@sdetweil Thank you again! I’ll give it a try.