<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Calendar Config (bit of a noob)]]></title><description><![CDATA[<p dir="auto">I have managed to get all of the various modules to work, even wrote some code to display wind direction, converting degrees to compass points (which I’ll share soon).</p>
<p dir="auto">However, I have not been able to get the calendar to display anything except “module_2_calendar”.</p>
<p dir="auto">My main question is where should I put the calendar config? In the config.js file or in the calendar module js file? Or both? I feel that I have tried all combinations and don’t seem to be able to get it working at all.</p>
<p dir="auto">Cheers,</p>
<p dir="auto">Mat</p>
]]></description><link>https://forum.magicmirror.builders/topic/220/calendar-config-bit-of-a-noob</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 05:36:27 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/220.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 Jun 2016 06:07:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Calendar Config (bit of a noob) on Mon, 13 Jun 2016 21:55:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zydecat74" aria-label="Profile: zydecat74">@<bdi>zydecat74</bdi></a> Great!  When you get it done take a picture and post it!</p>
]]></description><link>https://forum.magicmirror.builders/post/1634</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/1634</guid><dc:creator><![CDATA[cowboysdude]]></dc:creator><pubDate>Mon, 13 Jun 2016 21:55:00 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar Config (bit of a noob) on Mon, 13 Jun 2016 15:03:08 GMT]]></title><description><![CDATA[<p dir="auto">Thank you all for your help and suggestions and help!.</p>
<p dir="auto">It seems that as I have been working on this mirror project for some time, I have been working on v2-beta version which has different configuration to the current version. Just reinstalled the mirror and with a couple of minor adjustments have managed to get it working as I like.</p>
<p dir="auto">Now the config is sorted it’s time to source the monitor and framing materials…</p>
<p dir="auto">Cheers,</p>
<p dir="auto">Mat</p>
]]></description><link>https://forum.magicmirror.builders/post/1625</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/1625</guid><dc:creator><![CDATA[zydecat74]]></dc:creator><pubDate>Mon, 13 Jun 2016 15:03:08 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar Config (bit of a noob) on Mon, 13 Jun 2016 16:09:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zydecat74" aria-label="Profile: zydecat74">@<bdi>zydecat74</bdi></a> said in <a href="/topic/220/calendar-config-bit-of-a-noob/5">Calendar Config (bit of a noob)</a>:</p>
<blockquote>
<p dir="auto">Here is my complete config.js (with a few identifiers removed). Hoping something jumps out!</p>
<pre><code>/* 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;}
</code></pre>
</blockquote>
<p dir="auto">This is what I did and it fixed mine…</p>
<pre><code>{
			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&amp;ctz=America/New_York'
					}
				]
			}
		},''
</code></pre>
<p dir="auto">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.</p>
<p dir="auto"><strong>Note from Moderator:</strong> Please use <a href="http://commonmark.org/help/" target="_blank" rel="noopener noreferrer nofollow ugc">Markdown</a> on code snippets for easier reading.</p>
]]></description><link>https://forum.magicmirror.builders/post/1619</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/1619</guid><dc:creator><![CDATA[cowboysdude]]></dc:creator><pubDate>Mon, 13 Jun 2016 16:09:48 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar Config (bit of a noob) on Sun, 12 Jun 2016 06:14:30 GMT]]></title><description><![CDATA[<p dir="auto">Here is my complete config.js (with a few identifiers removed). Hoping something jumps out!</p>
<p dir="auto">/* Magic Mirror Config Sample<br />
*</p>
<ul>
<li>By Michael Teeuw <a href="http://michaelteeuw.nl" target="_blank" rel="noopener noreferrer nofollow ugc">http://michaelteeuw.nl</a></li>
<li>MIT Licensed.<br />
*/</li>
</ul>
<p dir="auto">var config = {<br />
port: 8080,</p>
<pre><code>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
		}
	},
]
</code></pre>
<p dir="auto">};</p>
<p dir="auto">/*************** DO NOT EDIT THE LINE BELOW ***************/<br />
if (typeof module !== ‘undefined’) {module.exports = config;}</p>
]]></description><link>https://forum.magicmirror.builders/post/1579</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/1579</guid><dc:creator><![CDATA[zydecat74]]></dc:creator><pubDate>Sun, 12 Jun 2016 06:14:30 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar Config (bit of a noob) on Sun, 12 Jun 2016 05:01:19 GMT]]></title><description><![CDATA[<p dir="auto">Sounds to me like you have a configuration error in your config.js file. Without seeing it, I have nothing to go by or what to tell you to fix.</p>
]]></description><link>https://forum.magicmirror.builders/post/1577</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/1577</guid><dc:creator><![CDATA[KirAsh4]]></dc:creator><pubDate>Sun, 12 Jun 2016 05:01:19 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar Config (bit of a noob) on Sun, 12 Jun 2016 03:26:36 GMT]]></title><description><![CDATA[<p dir="auto">Thank you for that. The calendar is starting to work (there seems to be an issue with me including an icloud calendar but I’ll verify that I have the settings correct before hitting up the forum for help with that).</p>
<p dir="auto">However, now that I have the calendar working, all of the other modules have disappeared (weather, compliments, news rss feed). Has anyone else experienced that?</p>
]]></description><link>https://forum.magicmirror.builders/post/1576</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/1576</guid><dc:creator><![CDATA[zydecat74]]></dc:creator><pubDate>Sun, 12 Jun 2016 03:26:36 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar Config (bit of a noob) on Sat, 11 Jun 2016 07:37:28 GMT]]></title><description><![CDATA[<p dir="auto">Any configuration, for any/all of the modules, should always go in the main config.js file. You should not have to edit anything else. If you have edited source files, I recommend you grab the original source again from Github. If after you’ve done that, your calendar still isn’t working with your configuration, feel free to post the relevant section (removing private information) and we may be able to figure out what’s going on.</p>
]]></description><link>https://forum.magicmirror.builders/post/1566</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/1566</guid><dc:creator><![CDATA[KirAsh4]]></dc:creator><pubDate>Sat, 11 Jun 2016 07:37:28 GMT</pubDate></item></channel></rss>