<?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[Adding Modules... Please Please advise]]></title><description><![CDATA[<p dir="auto">Ok, cant find anything in the Readme, all git repos just state add to the modules…</p>
<p dir="auto">Can someone please share their config file with multiple mods past the default, so i can see where i am going wrong…</p>
<p dir="auto">Thanks</p>
]]></description><link>https://forum.magicmirror.builders/topic/861/adding-modules-please-please-advise</link><generator>RSS for Node</generator><lastBuildDate>Wed, 17 Jun 2026 01:21:34 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/861.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 24 Oct 2016 06:45:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Wed, 16 Nov 2016 02:16:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bhepler" aria-label="Profile: bhepler">@<bdi>bhepler</bdi></a> said in <a href="/post/7901">Adding Modules... Please Please advise</a>:</p>
<blockquote>
<p dir="auto">@wjdw87 Okay, I finally had some time so I looked at the file you linked.</p>
<p dir="auto">As @strawberry-3-141 said, you have an issue on line 100, part of the configuration of the camera module. You have: <code>config: selfieInterval: 3,  // Time interval in seconds before the photo will be taken.</code></p>
<p dir="auto">You need to follow the config key with a JSON object, designated by curly braces. So the camera module section should look like so:</p>
<pre><code>{
	module: 'camera',
	position: 'top_center',
	config: {
		selfieInterval: 3    
		emailConfig: {
			service: 'gmail', 
			auth: {
				user: '&lt;xxx@xxx.com&gt;',
				pass: '&lt;xxx&gt;' 
				},
			},
		}
	},
</code></pre>
<p dir="auto">It doesn’t help that the config section is wrong in the <a href="http://README.MD" target="_blank" rel="noopener noreferrer nofollow ugc">README.MD</a> in the camera module. I’ll see if I can’t get a PR to fix that.</p>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bhepler" aria-label="Profile: bhepler">@<bdi>bhepler</bdi></a> said in <a href="/topic/861/adding-modules-please-please-advise/24">Adding Modules... Please Please advise</a>:</p>
<blockquote>
<p dir="auto">Additionally, you are missing a closed square bracket in your configuration for the VoiceControl module. After you define your keywords, you need to close the array. The second to last line of your voicecontrol configuration is where it needs to go. Like so:</p>
<pre><code class="language-javascript">{
	module: 'voicecontrol',
	position: 'bottom_left',
	config: {
	models: [
		{
			keyword: "Show Camera",
			description: "Say 'Show Camera' to display camera",
			file: "showCamera.pmdl",
			message: "SHOW_CAMERA"
		},
		{
			keyword: "Hide Camera",
			description: "Say 'Hide Camera' to hide camera",
			file: "hideCamera.pmdl",
			message: "HIDE_CAMERA"
		},
		{
			keyword: "Selfie",
			description: "Say 'Selfie' when camera is visible",
			file: "selfie.pmdl",
			message: "SELFIE"
		}
	]  // **HERE**
},
</code></pre>
</blockquote>
<p dir="auto">Many thanks</p>
]]></description><link>https://forum.magicmirror.builders/post/8016</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/8016</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Wed, 16 Nov 2016 02:16:16 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Sun, 13 Nov 2016 23:21:29 GMT]]></title><description><![CDATA[<p dir="auto">Additionally, you are missing a closed square bracket in your configuration for the VoiceControl module. After you define your keywords, you need to close the array. The second to last line of your voicecontrol configuration is where it needs to go. Like so:</p>
<pre><code class="language-javascript">{
	module: 'voicecontrol',
	position: 'bottom_left',
	config: {
	models: [
		{
			keyword: "Show Camera",
			description: "Say 'Show Camera' to display camera",
			file: "showCamera.pmdl",
			message: "SHOW_CAMERA"
		},
		{
			keyword: "Hide Camera",
			description: "Say 'Hide Camera' to hide camera",
			file: "hideCamera.pmdl",
			message: "HIDE_CAMERA"
		},
		{
			keyword: "Selfie",
			description: "Say 'Selfie' when camera is visible",
			file: "selfie.pmdl",
			message: "SELFIE"
		}
	]  // **HERE**
},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/7902</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7902</guid><dc:creator><![CDATA[bhepler]]></dc:creator><pubDate>Sun, 13 Nov 2016 23:21:29 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Sun, 13 Nov 2016 22:58:11 GMT]]></title><description><![CDATA[<p dir="auto">@wjdw87 Okay, I finally had some time so I looked at the file you linked.</p>
<p dir="auto">As @strawberry-3-141 said, you have an issue on line 100, part of the configuration of the camera module. You have: <code>config: selfieInterval: 3,  // Time interval in seconds before the photo will be taken.</code></p>
<p dir="auto">You need to follow the config key with a JSON object, designated by curly braces. So the camera module section should look like so:</p>
<pre><code>{
	module: 'camera',
	position: 'top_center',
	config: {
		selfieInterval: 3    
		emailConfig: {
			service: 'gmail', 
			auth: {
				user: '&lt;xxx@xxx.com&gt;',
				pass: '&lt;xxx&gt;' 
				},
			},
		}
	},
</code></pre>
<p dir="auto">It doesn’t help that the config section is wrong in the <a href="http://README.MD" target="_blank" rel="noopener noreferrer nofollow ugc">README.MD</a> in the camera module. I’ll see if I can’t get a PR to fix that.</p>
]]></description><link>https://forum.magicmirror.builders/post/7901</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7901</guid><dc:creator><![CDATA[bhepler]]></dc:creator><pubDate>Sun, 13 Nov 2016 22:58:11 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Tue, 25 Oct 2016 16:33:44 GMT]]></title><description><![CDATA[<p dir="auto">Ah cool, updated that, but still have issues around the modules i’ve /// out</p>
<p dir="auto">much appreciated though!</p>
]]></description><link>https://forum.magicmirror.builders/post/6876</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6876</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Tue, 25 Oct 2016 16:33:44 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Tue, 25 Oct 2016 16:28:51 GMT]]></title><description><![CDATA[<p dir="auto">@wjdw87 Indeed, you can. The <a href="https://github.com/MichMich/MagicMirror/tree/master/modules/default/newsfeed" target="_blank" rel="noopener noreferrer nofollow ugc">documentation for the newsfeed module</a> gives a simple example.</p>
]]></description><link>https://forum.magicmirror.builders/post/6874</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6874</guid><dc:creator><![CDATA[bhepler]]></dc:creator><pubDate>Tue, 25 Oct 2016 16:28:51 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Tue, 25 Oct 2016 16:27:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bhepler" aria-label="Profile: bhepler">@<bdi>bhepler</bdi></a> said in <a href="/post/6870">Adding Modules... Please Please advise</a>:</p>
<blockquote>
<p dir="auto">@wjdw87 Why do you have the newsfeed module specified twice? You have:</p>
<pre><code class="language-javascript">{
	module: 'newsfeed',
	position: 'bottom_bar',
	config: {
		feeds: [
			{
				title: "Bloomberg Baby!",
				url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
			}
		],
		showSourceTitle: true,
		showPublishDate: true
	}
},
{
	module: 'newsfeed',
	position: 'bottom_bar',
	config: {
		feeds: [
			{
				tittle: "BBC Sci-Tech",
				url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk"
			}
		],
		showSourceTitle: true,
		showPublishDate: true
	}
},
</code></pre>
<p dir="auto">Would it not make more sense to just put both feeds in the feed array?</p>
<pre><code class="language-javascript">{
    module: 'newsfeed',
    position: 'bottom_bar',
    config: {
        feeds: [
            {
                title: "Bloomberg Baby!",
                url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
            },
            {
                title: "BBC Sci-Tech",
		url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk"
            }
        ],
        showSourceTitle: true,
        showPublishDate: true
    }
}
</code></pre>
<p dir="auto">(Also, you misspelled “title” in your second newsfeed. You have an extra “t”.)</p>
</blockquote>
<p dir="auto">you can add them to the same array?</p>
]]></description><link>https://forum.magicmirror.builders/post/6873</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6873</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Tue, 25 Oct 2016 16:27:14 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Tue, 25 Oct 2016 16:19:38 GMT]]></title><description><![CDATA[<p dir="auto">@wjdw87 Why do you have the newsfeed module specified twice? You have:</p>
<pre><code class="language-javascript">{
	module: 'newsfeed',
	position: 'bottom_bar',
	config: {
		feeds: [
			{
				title: "Bloomberg Baby!",
				url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
			}
		],
		showSourceTitle: true,
		showPublishDate: true
	}
},
{
	module: 'newsfeed',
	position: 'bottom_bar',
	config: {
		feeds: [
			{
				tittle: "BBC Sci-Tech",
				url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk"
			}
		],
		showSourceTitle: true,
		showPublishDate: true
	}
},
</code></pre>
<p dir="auto">Would it not make more sense to just put both feeds in the feed array?</p>
<pre><code class="language-javascript">{
    module: 'newsfeed',
    position: 'bottom_bar',
    config: {
        feeds: [
            {
                title: "Bloomberg Baby!",
                url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
            },
            {
                title: "BBC Sci-Tech",
		url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk"
            }
        ],
        showSourceTitle: true,
        showPublishDate: true
    }
}
</code></pre>
<p dir="auto">(Also, you misspelled “title” in your second newsfeed. You have an extra “t”.)</p>
]]></description><link>https://forum.magicmirror.builders/post/6870</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6870</guid><dc:creator><![CDATA[bhepler]]></dc:creator><pubDate>Tue, 25 Oct 2016 16:19:38 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Tue, 25 Oct 2016 07:16:14 GMT]]></title><description><![CDATA[<p dir="auto">/// as used instead of ``` as they crash my system (the modules) just blank screen, will be removed when the issue is resolved.</p>
]]></description><link>https://forum.magicmirror.builders/post/6838</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6838</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Tue, 25 Oct 2016 07:16:14 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Tue, 25 Oct 2016 07:09:52 GMT]]></title><description><![CDATA[<p dir="auto"><a href="http://www.filedropper.com/configforupload" target="_blank" rel="noopener noreferrer nofollow ugc">link text</a> My config</p>
]]></description><link>https://forum.magicmirror.builders/post/6837</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6837</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Tue, 25 Oct 2016 07:09:52 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Tue, 25 Oct 2016 07:17:40 GMT]]></title><description><![CDATA[<p dir="auto">Guys, <strong>use proper formatting for your code!</strong> (edited to add: <strong>when posting on the forums</strong> - not in your config files)</p>
<p dir="auto">Block code is done with <code>```</code>on a line by itself, then your code, and closed with another <code>```</code> on a line by itself again. This is not the same as an apostrophe! It’s called a <code>'back tick'</code> or <code>'accent grave'</code> and can be found to the left of the numerical number 1 at the top on a US keyboard. <em>Please use it!</em> It makes reading your config files <strong>a lot</strong> easier.</p>
<p dir="auto">On non-US keyboards, um, its location will vary. You can also press and hold your ALT key, and using the numerical pad, enter 9 followed by 6, then let go of the ALT key. Repeat that three times and you get the three back ticks necessary.</p>
]]></description><link>https://forum.magicmirror.builders/post/6836</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6836</guid><dc:creator><![CDATA[KirAsh4]]></dc:creator><pubDate>Tue, 25 Oct 2016 07:17:40 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Tue, 25 Oct 2016 06:33:10 GMT]]></title><description><![CDATA[<p dir="auto">Curley braces where sorry?</p>
]]></description><link>https://forum.magicmirror.builders/post/6835</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6835</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Tue, 25 Oct 2016 06:33:10 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 20:37:58 GMT]]></title><description><![CDATA[<p dir="auto">@wjdw87 you’re missing curly braces for config in the camera module</p>
]]></description><link>https://forum.magicmirror.builders/post/6820</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6820</guid><dc:creator><![CDATA[strawberry 3.141]]></dc:creator><pubDate>Mon, 24 Oct 2016 20:37:58 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 19:05:19 GMT]]></title><description><![CDATA[<p dir="auto">Strange these modules have not been pre- code checked before uploading to GH…?</p>
<p dir="auto">I’ve updated my script as been adding other modules, and getting errors or just “loading”…</p>
<p dir="auto">have added /// pre module lines to highlight the ones that i am having issues with …</p>
<p dir="auto">var config = {<br />
port: 8080,</p>
<pre><code>language: 'en',
timeFormat: 12,
units: 'metric',

modules: [
	{
		module: 'alert'
	},
	{
		module: 'clock',
		position: 'top_left',
	},
	{
		module: 'calendar',
		header: 'British Holidays',
		position: 'top_left',
		config: {
			calendars: [
				{
					symbol: 'calendar-check-o ',
					url: 'webcal://www.calendarlabs.com/templates/ical/UK-Holidays.ics'
				}
			]
		}
	},
	{
		module: 'compliments',
		position: 'lower_third',
	},
	{
		module: 'currentweather',
		position: 'top_right',
		config: {
			location: 'Phuket',
			locationID: '1151254',  //ID from http://www.openweathermap.org
			appid: '297ccc98662ac6f508ac9e47c549a716'
		}
	},
	{
		module: 'weatherforecast',
		position: 'top_right',
		header: 'Weather huh!',
		config: {
            location: 'Phuket',
			locationID: '1151254',  //ID from http://www.openweathermap.org
            appid: '297ccc98662ac6f508ac9e47c549a716'
		}
	},
	{
		module: 'newsfeed',
		position: 'bottom_bar',
		config: {
			feeds: [
				{
					title: "Bloomberg",
					url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
				}
			],
			showSourceTitle: true,
			showPublishDate: true
		}
	},
			{
		module: 'newsfeed',
		position: 'bottom_bar',
		config: {
			feeds: [
				{
					tittle: "BBC Sci-Tech",
					url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk"
				}
			],
			showSourceTitle: true,
			showPublishDate: true
		}
	},
	{
		module: 'MMM-Instagram',
		position: 'top_right',
		config: {
    	access_token: 'e897699215d0464f9aac278e4fdc25ba',
    	count: 20,  
    	min_timestamp: 0,
    	animationSpeed: 2500,
    	updateInterval: 12500
    	}
    },
</code></pre>
<p dir="auto">///     {<br />
///    		module: ‘MMM-Carousel’,<br />
///    		config: {<br />
///    		    // See below for configurable options<br />
///    		}<br />
///		},<br />
///		{<br />
///			module: ‘camera’,<br />
///			position: ‘top_center’,<br />
///			config: selfieInterval: 3,  // Time interval in seconds before the photo will be taken.<br />
///   	 	emailConfig: {<br />
///         service: ‘gmail’, // Email provider to use to send email with a photo.<br />
///         auth: {<br />
///             user: ‘<a href="mailto:xxxx@xxx.com" target="_blank" rel="noopener noreferrer nofollow ugc">xxxx@xxx.com</a>’, // Your email account<br />
///             pass: ‘’        // Your password for email account<br />
///         }<br />
///     },<br />
///        {<br />
///        	module: ‘voicecontrol’,<br />
///    		position: ‘bottom_left’,<br />
///    		config: {<br />
///        	models: [<br />
///            {<br />
///                keyword: “Show Camera”,<br />
///                description: “Say ‘Show Camera’ to display camera”,<br />
///                file: “showCamera.pmdl”,<br />
///                message: “SHOW_CAMERA”<br />
///            },<br />
///         {<br />
///             keyword: “Hide Camera”,<br />
///             description: “Say ‘Hide Camera’ to hide camera”,<br />
///             file: “hideCamera.pmdl”,<br />
///             message: “HIDE_CAMERA”<br />
///         },<br />
///         {<br />
///             keyword: “Selfie”,<br />
///             description: “Say ‘Selfie’ when camera is visible”,<br />
///             file: “selfie.pmdl”,<br />
///             message: “SELFIE”<br />
///        }<br />
///     },<br />
]<br />
};<br />
/*************** DO NOT EDIT THE LINE BELOW ***************/<br />
if (typeof module !== ‘undefined’) {module.exports = config;}</p>
]]></description><link>https://forum.magicmirror.builders/post/6812</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6812</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 24 Oct 2016 19:05:19 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 19:00:23 GMT]]></title><description><![CDATA[<p dir="auto">Thanks will check now.</p>
]]></description><link>https://forum.magicmirror.builders/post/6811</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6811</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 24 Oct 2016 19:00:23 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 18:59:02 GMT]]></title><description><![CDATA[<p dir="auto">I think the error is that the line</p>
<pre><code>		module: 'alert',
</code></pre>
<p dir="auto">has a trailing comma, it should read</p>
<pre><code>		module: 'alert'
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/6809</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6809</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Mon, 24 Oct 2016 18:59:02 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 13:02:25 GMT]]></title><description><![CDATA[<p dir="auto">var config = {<br />
port: 8080,</p>
<pre><code>language: 'en',
timeFormat: 12,
units: 'metric',

modules: [
	{
		module: 'alert',
	},
	{
		module: 'clock',
		position: 'top_left',
	},
	{
		module: 'calendar',
		header: 'British Holidays Bitch',
		position: 'top_left',
		config: {
			calendars: [
				{
					symbol: 'calendar-check-o ',
					url: 'webcal://www.calendarlabs.com/templates/ical/UK-Holidays.ics'
				}
			]
		}
	},
	{
		module: 'compliments',
		position: 'lower_third',
	},
	{
		module: 'currentweather',
		position: 'top_right',
		config: {
			location: 'Phuket',
			locationID: '1151254',  //ID from http://www.openweathermap.org
			appid: '297ccc98662ac6f508ac9e47c549a716'
		}
	},
	{
		module: 'weatherforecast',
		position: 'top_right',
		header: 'Weather huh!',
		config: {
            location: 'Phuket',
			locationID: '1151254',  //ID from http://www.openweathermap.org
            appid: '297ccc98662ac6f508ac9e47c549a716'
		}
	},
	{
		module: 'newsfeed',
		position: 'bottom_bar',
		config: {
			feeds: [
				{
					title: "Bloomberg Baby!",
					url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
				}
			],
			showSourceTitle: true,
			showPublishDate: true
		}
	},
	{
		module: 'MMM-WorldTides',
		position: 'top_right',
		config: {
		longitude: '7.880', //longitude and latitude need to be written with . instead of ,
		latitude: '98.392',
		appid: '5d3d65d6-f4a6-45d4-ab44-13e4eab4b421' //appid needs to be requested from worldtides.info
		}
	},	
]
</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/6795</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6795</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 24 Oct 2016 13:02:25 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 12:40:12 GMT]]></title><description><![CDATA[<p dir="auto">Thanks, much appreciated :)</p>
]]></description><link>https://forum.magicmirror.builders/post/6794</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6794</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 24 Oct 2016 12:40:12 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 12:34:35 GMT]]></title><description><![CDATA[<p dir="auto">I need to check on my machine this evening, when I am at home</p>
]]></description><link>https://forum.magicmirror.builders/post/6793</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6793</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Mon, 24 Oct 2016 12:34:35 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 12:29:46 GMT]]></title><description><![CDATA[<p dir="auto">Is it due to not pasting the code like this</p>
<p dir="auto">modules: [<br />
{<br />
module: ‘MMM-WorldTides’,<br />
position: ‘top-right’,<br />
config: {<br />
longitude: ‘’, //longitude and latitude need to be written with . instead of ,<br />
latitude: ‘’,<br />
appid: ‘’ //appid needs to be requested from <a href="http://worldtides.info" target="_blank" rel="noopener noreferrer nofollow ugc">worldtides.info</a><br />
}<br />
}</p>
]]></description><link>https://forum.magicmirror.builders/post/6791</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6791</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 24 Oct 2016 12:29:46 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 12:25:34 GMT]]></title><description><![CDATA[<p dir="auto">:( nope, i updated yet still have a blank screen :(</p>
<p dir="auto">var config = {<br />
port: 8080,</p>
<pre><code>language: 'en',
timeFormat: 12,
units: 'metric',

modules: [
	{
		module: 'alert',
	},
	{
		module: 'clock',
		position: 'top_left'
	},
	{
		module: 'calendar',
		header: 'British Holidays Bitch',
		position: 'top_left',
		config: {
			calendars: [
				{
					symbol: 'calendar-check-o ',
					url: 'webcal://www.calendarlabs.com/templates/ical/UK-Holidays.ics'
				}
			]
		}
	},
	{
		module: 'compliments',
		position: 'lower_third'
	},
	{
		module: 'currentweather',
		position: 'top_right',
		config: {
			location: 'Phuket',
			locationID: '1151254',  //ID from http://www.openweathermap.org
			appid: '297ccc98662ac6f508ac9e47c549a716'
		}
	},
	{
		module: 'weatherforecast',
		position: 'top_right',
		header: 'Weather huh!',
		config: {
            location: 'Phuket',
			locationID: '1151254',  //ID from http://www.openweathermap.org
            appid: '297ccc98662ac6f508ac9e47c549a716'
		}
	},
	{
		module: 'newsfeed',
		position: 'bottom_bar',
		config: {
			feeds: [
				{
					title: "Bloomberg Baby!",
					url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
				}
			],
			showSourceTitle: true,
			showPublishDate: true
		}
	},
	{
		module: 'MMM-WorldTides',
		position: 'top_right',
		config: {
		longitude: '7.880', //longitude and latitude need to be written with . instead of ,
		latitude: '98.392',
		appid: '5d3d65d6-f4a6-45d4-ab44-13e4eab4b421' //appid needs to be requested from worldtides.info
		}
	},	
]
</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/6789</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6789</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 24 Oct 2016 12:25:34 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 12:22:41 GMT]]></title><description><![CDATA[<p dir="auto">ah, cool thanks, hopefully that’s all the problem is, :)</p>
]]></description><link>https://forum.magicmirror.builders/post/6788</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6788</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 24 Oct 2016 12:22:41 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 12:12:19 GMT]]></title><description><![CDATA[<p dir="auto">Not sure if this is the problem but the position for module WorldTides should be top_right and not top-right</p>
<p dir="auto">That btw is my fault, a stupid typo in the readme :(</p>
]]></description><link>https://forum.magicmirror.builders/post/6787</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6787</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Mon, 24 Oct 2016 12:12:19 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 11:50:50 GMT]]></title><description><![CDATA[<p dir="auto">var config = {<br />
port: 8080,</p>
<pre><code>language: 'en',
timeFormat: 12,
units: 'metric',

modules: [
	{
		module: 'alert',
	},
	{
		module: 'clock',
		position: 'top_left'
	},
	{
		module: 'calendar',
		header: 'British Holidays',
		position: 'top_left',
		config: {
			calendars: [
				{
					symbol: 'calendar-check-o ',
					url: 'webcal://www.calendarlabs.com/templates/ical/UK-Holidays.ics'
				}
			]
		}
	},
	{
		module: 'compliments',
		position: 'lower_third'
	},
	{
		module: 'currentweather',
		position: 'top_right',
		config: {
			location: 'Phuket',
			locationID: '1151254',  //ID from http://www.openweathermap.org
			appid: '297ccc98662ac6f508ac9e47c549a716'
		}
	},
	{
		module: 'weatherforecast',
		position: 'top_right',
		header: 'Weather huh!',
		config: {
            location: 'Phuket',
			locationID: '1151254',  //ID from http://www.openweathermap.org
            appid: '297ccc98662ac6f508ac9e47c549a716'
		}
	},
	{
		module: 'newsfeed',
		position: 'bottom_bar',
		config: {
			feeds: [
				{
					title: "Bloomberg!",
					url: "https://www.bloomberg.com/feeds/podcasts/etf_report.xml"
				}
			],
			showSourceTitle: true,
			showPublishDate: true
		}
	},
	{
		module: 'MMM-WorldTides',
		position: 'top-right',
		config: {
		longitude: '7.880', //longitude and latitude need to be written with . instead of ,
		latitude: '98.392',
		appid: '5d3d65d6-f4a6-45d4-ab44-13e4eab4b421' //appid needs to be requested from worldtides.info
		}
	},	
]
</code></pre>
<p dir="auto">};</p>
<p dir="auto">Just getting a black screen…</p>
]]></description><link>https://forum.magicmirror.builders/post/6786</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6786</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 24 Oct 2016 11:50:50 GMT</pubDate></item><item><title><![CDATA[Reply to Adding Modules... Please Please advise on Mon, 24 Oct 2016 09:09:54 GMT]]></title><description><![CDATA[<p dir="auto">Just post your config.js file content and let others see what might be missing.<br />
Please tab indent your file content before posting or use proper markup so the code is readable</p>
]]></description><link>https://forum.magicmirror.builders/post/6774</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6774</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Mon, 24 Oct 2016 09:09:54 GMT</pubDate></item></channel></rss>