@zydecat74 said in Calendar Config (bit of a noob):
Here is my complete config.js (with a few identifiers removed). Hoping something jumps out!
/* Magic Mirror Config Sample
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var config = {
port: 8080,
language: 'en',
timeFormat: 24,
modules: [
{
module: 'alert',
},
{
module: 'clock',
position: 'top_left'
},
{
module: 'calendar',
header: 'Calendar',
position: 'top_left',
config: {
calendars: [
{
symbol: 'calendar-check-o ',
url: 'webcal://www.calendarlabs.com/templates/ical/Australia-Holidays.ics'
},
{
symbol: 'heart-o',
url: 'webcal://p08-calendarws.icloud.com/ca/subscribe/1/xxxxxxxxx'
}
]
}
},
{
module: 'compliments',
position: 'lower_third'
},
{
module: 'currentweather',
position: 'top_right',
config: {
location: 'Perth, AU',
appid: 'xxxxxxxxx'
}
},
{
module: 'weatherforecast',
position: 'top_right',
header: 'Weather Forecast',
config: {
location: 'Perth, AU',
appid: 'xxxxxxx'
}
},
{
module: 'newsfeed',
position: 'bottom_bar',
config: {
feedUrl: 'http://www.abc.net.au/news/feed/45910/rss.xml',
showPublishDate: true
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {module.exports = config;}
This is what I did and it fixed mine…
{
module: 'calendar',
header: 'US Holidays',
position: 'top_left',
config: {
calendars: [
{
symbol: 'calendar-check-o ',
url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
}
]
}
},
{
module: 'calendar',
header: 'My Schedule',
position: 'top_left',
config: {
calendars: [
{
symbol: 'calendar-check-o ',
url: 'https://calendar.google.com/calendar/embed?src=xxxxxxxxxgmail.com&ctz=America/New_York'
}
]
}
},''
I edited out my email address in the url for obvious reasons but that uses my google calendar to let me see my daily schedule… it works.
Note from Moderator: Please use Markdown on code snippets for easier reading.