The value for albumId should be written with quotation marks "AFktr.....26Z3s",
Other than that I cannot spot any error in your snippet.
Read the statement by Michael Teeuw here.
Posts
-
RE: Problems with certificate with MMM- Google Photos
-
RE: NYC MTA Subway Times
@mastev26
Sure, would you mind sharing the python script?
Feel free to fork my repository or submit a PR. -
RE: NYC MTA Subway Times
Like this one?
https://forum.magicmirror.builders/topic/1935/mmm-mta-display-long-island-rail-road-delaysI converted an old existing MTA module into a MM2 module for one user. It’s been two years since then, so I don’t know if it still is working, but please give it a try.
-
RE: AlexaPI not installing
A good way to start this would be the error message 😏
-
RE: MMM-Lunartic
Well, the main problem is that the authority which issued and signed the certificate is untrusted. Therefore browsers block access to this site showing a warning
-
RE: Is there a "Rasbian simulation enviroment" for windows??
I agree to @sdetweil
Better think twice about fiddling around with your company laptop. I don’t know you, I don’t know your job nor your boss, but it could cause trouble doing such private stuff on a company issued device.That being said you could simply install node.js on the machine, start your mirror in serveronly mode and connect Chrome to the localhost ip address.
-
RE: PIR sensor behind glass?
@paulb
I really like the way this guy mounted the camera on top of the mirror: https://forum.magicmirror.builders/topic/6952/my-mirror-so-great -
RE: Calendar Module +1 day Error
It is a bit irritating where to put the config stuff. Some needs to go to config section directly, some need to go to the calendars section.
Please try this:
{ module: 'calendar', classes: 'default everyone', // header: 'Termine', position: 'top_right', config: { displayRepeatingCountTitle: true, timeFormat: 'absolute', dateFormat: 'DD MMM', fullDayEventDateFormat:'DD MMM', showEnd: false, getRelative: 48, urgency: 2, calendars: [ { url: 'https://calendar.google.com/calendar/XXX', symbol: 'calender', colored: true, maximumEntries: 5, repeatingCountTitle: 'Birthday' } ] } },
-
RE: MMM-CalendarWeek
Okay, please try this.
{ module: "MMM-CalendarWeek", position: "bottom_bar", config: { showEndDate: true, displayLocation: true, displayDescription: true, calendars: [ { symbol: "calendar-check-o", maximumNumberOfDays: 5, url: "************" } ] } },
-
RE: MMM-CalendarWeek
@cattoo said in MMM-CalendarWeek:
Hi,
I have set the config to
maximumNumberOfDays: 7,
showEndDate: true
displayDescription: trueBut it aint taking it, what could be wrong?
Only seeing the default values.Please post the entire MMM-CalendarWeek section of your config.js, just remove any personal details like links to your calendars. Maybe you added the config details in the wrong place?