<?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[I am stuck need help]]></title><description><![CDATA[<p dir="auto">Hello, very new to coding and the magic mirror platform. I have installed magic mirror and the modules correctly. I then went into the config.js file and edited it to add the modules etc. Every time I try to start magic mirror it tells me that I have no validated config. js file and that there are errors. Could someone please tell me what I am doing wrong.<br />
Here is the entire config.js file:</p>
<pre><code>var config = {
	address: "localhost", // Address to listen on, can be:
	                      // - "localhost", "127.0.0.1", "::1" 
	                      // - another specific IPv4/6 
	                      // - "", "0.0.0.0", "::" 
	                      // 
	port: 8080,
	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], 
	
        language: "en",
	timeFormat: 24,
	units: "imperial",

	modules: [
		  {
			module: "alert",
		  },
		  {
			module: "updatenotification",
			position: "top_bar",
		  },
		  {
			module: "clock",
			position: "top_left",
		  },
		  {
		 	module: "calendar"
			header: "Calendar"
			position: "top_left",
			config: {
				calendars: [
					{
						symbol: "calendar-check",
						url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
					
				         },
                                         {

						symbol: "calendar-plus-o ",
						url: "https://calendar.google.com/XXXXXXXX/basic.ics"
					},
					{
						symbol: "calendar-plus-o ",
						url: "https://calendar.google.com/XXXXXXX/basic.ics"
				}	
				
			
		  },
		  {
			module: "helloworld",
		        position: "top_bar",
		        config: {
			         
			         text: "Welcome to the Carls Residence"
			        } 
		  },
		  {
			
                         module: "MMM-DarkSkyForecast",
                         header: "Weather",
                         position: "top_right",
                         classes: "default everyone",
                         disabled: false,
                         config: {
                                  apikey: "Xxxxxxxxxxdda4d069a",
                                  latitude: "39.548935",
                                  longitude: "-89.294533",      
                                  iconset: "4c",
                                  concise: false,
                                  forecastLayout: "table"
                                 }
			
		  },
		  {
			 module: "MMM-MyScoreboard",
                         position: "bottom_left",
                         classes: "default everyone",
                         header: "My Scoreboard",
                         config: {
                                  show LeagueSeparators: true,
                                  colored: true,
                                  viewStyle: "mediumLogos",
                                     sports: [
                                              {
                                               league: "NHL",
                                               groups: ["Western"]
                                              },
                                              {
                                               league: "NFL",
                                               groups: ["NFC North"]
                                              },
                                              {
                                               league: "MLB",
                                               groups: ["NL Central"]
                                             },
                                             {
                                              league: "NCAAM",
                                              groups: ["Big Ten"]
                                             },
                                             {
                                              league: "NCAAF",
                                              groups: ["Big Ten"]
                                  }
		  },
		  {
		

		       module: 'MMM-iFrame-Ping',
		       position: 'bottom_left',	
		       config: {
			        // See 'Configuration options' for more information.
			        url: "https://radar.weather.gov/radar.php?rid=ILX&amp;product=NCR&amp;overlay=11101111&amp;loop=yes", 
			        height:"100%", 
			        width:"100%",
			        autoRefresh: true, 
			        updateInterval: 10, 
			        displayLastUpdate: true,
			        width: "100%", 
			        height: "400px", 
			       scrolling: "no" 
			}
	           },
                   {
              


                	module: "newsfeed",
			position: "bottom_bar",
			config: {
				 feeds: [
					{
						title: "Fox News",
						url: "http://feeds.foxnews.com/foxnews/latest"
					}
				 ],
				  showSourceTitle: true,
				  showPublishDate: true
			        }
		 },
	   ]

};


if (typeof module !== "undefined") {module.exports = config;}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/9668/i-am-stuck-need-help</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Apr 2026 22:24:57 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/9668.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 01 Feb 2019 22:59:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to I am stuck need help on Wed, 06 Feb 2019 21:58:27 GMT]]></title><description><![CDATA[<p dir="auto">I posted this in another thread too.</p>
<p dir="auto">Hi,</p>
<p dir="auto">For beginners, the catchphrase is “JSON syntax”.<br />
There are many articles to be found, both short and lengthy.<br />
A small article would be:<br />
<a href="https://restfulapi.net/json-syntax/" target="_blank" rel="noopener noreferrer nofollow ugc">https://restfulapi.net/json-syntax/</a></p>
<p dir="auto">The main things to look for in your config.js file are:</p>
<ul>
<li>does every [ have a matching ]</li>
<li>are all arrays separated by a , (the last array does not need a ,)</li>
<li>does every { have a matching }</li>
<li>are all objects separated by a , (the last object does not need a ,)</li>
<li>is every name value pair separated by a ,</li>
</ul>
<p dir="auto">The syntax checker will try to find out if this syntax is correct and tries to predict where the error could be.<br />
So, when it says it saw a [ and it cannot find a matching ] it tells you what was expected and what it saw.</p>
<p dir="auto">Try to format you config.js to make it more visible.<br />
For example this:</p>
<pre><code>[{},{}],[{},{[]}]
</code></pre>
<p dir="auto">is better written like this:</p>
<pre><code>[
  {},
  {}
],
[
  {
  },
  {
    [
    ]
  }
]
</code></pre>
<p dir="auto">Pairs of [ ]and { } are better visible like this.</p>
<p dir="auto">Good luck :-)</p>
]]></description><link>https://forum.magicmirror.builders/post/51719</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51719</guid><dc:creator><![CDATA[evroom]]></dc:creator><pubDate>Wed, 06 Feb 2019 21:58:27 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Wed, 06 Feb 2019 16:11:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a> said in <a href="/post/51552">I am stuck need help</a>:</p>
<blockquote>
<p dir="auto"><a href="https://www.diffchecker.com/QQhBPpNO" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.diffchecker.com/QQhBPpNO</a></p>
</blockquote>
<p dir="auto">You’re full of valuable links!!! :-)</p>
]]></description><link>https://forum.magicmirror.builders/post/51682</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51682</guid><dc:creator><![CDATA[lavolp3]]></dc:creator><pubDate>Wed, 06 Feb 2019 16:11:55 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Wed, 06 Feb 2019 01:47:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a> said in <a href="/post/51617">I am stuck need help</a>:</p>
<blockquote>
<p dir="auto">Most of my issues were from inexperience and being overwhelmed.</p>
</blockquote>
<p dir="auto">Dude, do your victory dance now! :clap:</p>
]]></description><link>https://forum.magicmirror.builders/post/51639</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51639</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Wed, 06 Feb 2019 01:47:36 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Tue, 05 Feb 2019 18:40:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a><br />
the issues honestly are having little to no coding experience, and not knowing where commas  and brackets go. Luckily, someone helped fixed my config file.</p>
<p dir="auto">I also ran into an issue with installing the modules. I did not realize at first that after you git clone the module you have to go into the module directory and run npm install command. After reading into it, it was a very simple fix.</p>
<p dir="auto">Most of my issues were from inexperience and being overwhelmed.</p>
]]></description><link>https://forum.magicmirror.builders/post/51617</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51617</guid><dc:creator><![CDATA[dcarls91]]></dc:creator><pubDate>Tue, 05 Feb 2019 18:40:31 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Tue, 05 Feb 2019 18:24:22 GMT]]></title><description><![CDATA[<p dir="auto">in his case, it was simply horrible config.js layout. Missing syntax all over the place.</p>
<pre><code>cd ~/MagicMirror
npm run config:check
cd ~
</code></pre>
<p dir="auto">Best script ever right there. I can’t express how important that is.</p>
]]></description><link>https://forum.magicmirror.builders/post/51614</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51614</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Tue, 05 Feb 2019 18:24:22 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Tue, 05 Feb 2019 17:05:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a> congratulations!!.. could you summarize what the problem was?   config, system, ? something else?</p>
<p dir="auto">I am looking for how to help others that express the same problem…</p>
<p dir="auto">thanks for any insight…</p>
]]></description><link>https://forum.magicmirror.builders/post/51606</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51606</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 05 Feb 2019 17:05:19 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Tue, 05 Feb 2019 16:59:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a> said in <a href="/post/51600">I am stuck need help</a>:</p>
<blockquote>
<p dir="auto">Thank you all for your help, after a long day yesterday i was able to get it up and running.</p>
</blockquote>
<p dir="auto">You see, we knew you could do it !! :-)<br />
Congratulations.</p>
]]></description><link>https://forum.magicmirror.builders/post/51602</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51602</guid><dc:creator><![CDATA[evroom]]></dc:creator><pubDate>Tue, 05 Feb 2019 16:59:09 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Tue, 05 Feb 2019 16:55:49 GMT]]></title><description><![CDATA[<p dir="auto">Thank you all for your help, after a long day yesterday i was able to get it up and running.</p>
]]></description><link>https://forum.magicmirror.builders/post/51600</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51600</guid><dc:creator><![CDATA[dcarls91]]></dc:creator><pubDate>Tue, 05 Feb 2019 16:55:49 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Tue, 05 Feb 2019 04:48:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a> Don’t give up.</p>
<p dir="auto">Keep at it, you’re so close to having a working MM - a little self study and work and it’s done.</p>
]]></description><link>https://forum.magicmirror.builders/post/51572</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51572</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Tue, 05 Feb 2019 04:48:20 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Mon, 04 Feb 2019 22:58:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a> might also want to consider removing lat/long too</p>
]]></description><link>https://forum.magicmirror.builders/post/51555</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51555</guid><dc:creator><![CDATA[n21brown]]></dc:creator><pubDate>Mon, 04 Feb 2019 22:58:56 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Mon, 04 Feb 2019 22:48:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a> said in <a href="/post/51367">I am stuck need help</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a> thank you for doing that, I’m very new to this, what else do i need to do to the above config file you posted</p>
</blockquote>
<p dir="auto">Sorry, I did not see your reply. Copy the config I posted, save it as config.js and add your API keys and links to calendars again. Or, to clearly see the changes I made, use this:<br />
<a href="https://www.diffchecker.com/QQhBPpNO" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.diffchecker.com/QQhBPpNO</a></p>
<p dir="auto">Left is your config, right is my fixed config.</p>
]]></description><link>https://forum.magicmirror.builders/post/51552</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51552</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Mon, 04 Feb 2019 22:48:31 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Mon, 04 Feb 2019 22:32:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a><br />
I understand that in the beginning the amount information can be overwhelming, but how are you going to find out what you are doing when you scrape your project?<br />
Especially when you are so close in getting the ‘Mirror’ started; just a few characters are missing in the config file.<br />
The community here is very active and very helpful and can step down a nodge when it is getting too technical.<br />
Of course it is expected that you have a certain level of knowledge or that you are willing to obtain that level.</p>
<p dir="auto">Besides spending several hours, did you spend any money on equipment, etc?</p>
<p dir="auto">If you decide to give it a last effort, then it would help to tell us on what platform your Mirror is running (Raspberry, PC, Ubuntu, etc) and it would help to report back with a bit more details (other than I tried and it did not work).<br />
And if someone tells you to perform action XYZ and you have no idea what the heck XYZ is or how to execute, then don’t be afraid to say so.</p>
<p dir="auto">The suggestions given, like try it module by module and the config check are very useful (I guess everyone was in this position, I know I was) and will solve your issues.</p>
<p dir="auto">If you decide to move away from Magic Mirror, then I respect that, but perhaps you will reconsider.</p>
<p dir="auto">Disclaimer: I do not have any shares in the project and am by no means an expert. Just reaching out. :-)</p>
]]></description><link>https://forum.magicmirror.builders/post/51551</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51551</guid><dc:creator><![CDATA[evroom]]></dc:creator><pubDate>Mon, 04 Feb 2019 22:32:26 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Mon, 04 Feb 2019 21:41:29 GMT]]></title><description><![CDATA[<p dir="auto">Just wanted to say thanks again for all of the help. I have spent the last couple of days trying to figure this out to no avail. I have decided to scrap the project for now until I can figure out what I am doing because I clearly do not have a clue.</p>
]]></description><link>https://forum.magicmirror.builders/post/51544</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51544</guid><dc:creator><![CDATA[dcarls91]]></dc:creator><pubDate>Mon, 04 Feb 2019 21:41:29 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sun, 03 Feb 2019 21:54:37 GMT]]></title><description><![CDATA[<p dir="auto">Give this a try. A  handy tool<br />
pi@raspberrypi:~/MagicMirror $  npm run config:check<br />
hope its sorted</p>
]]></description><link>https://forum.magicmirror.builders/post/51486</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51486</guid><dc:creator><![CDATA[antkaf]]></dc:creator><pubDate>Sun, 03 Feb 2019 21:54:37 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sun, 03 Feb 2019 00:10:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a> thank you for doing that, I’m very new to this, what else do i need to do to the above config file you posted</p>
]]></description><link>https://forum.magicmirror.builders/post/51367</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51367</guid><dc:creator><![CDATA[dcarls91]]></dc:creator><pubDate>Sun, 03 Feb 2019 00:10:07 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sat, 02 Feb 2019 20:09:52 GMT]]></title><description><![CDATA[<pre><code>var config = {
	address: "localhost", // Address to listen on, can be:
	                      // - "localhost", "127.0.0.1", "::1" 
	                      // - another specific IPv4/6 
	                      // - "", "0.0.0.0", "::" 
	                      // 
	port: 8080,
	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], 
	
        language: "en",
	timeFormat: 24,
	units: "imperial",

	modules: [
		  {
			module: "alert",
		  },
		  {
			module: "updatenotification",
			position: "top_bar",
		  },
		  {
			module: "clock",
			position: "top_left",
		  },
		  {
		 	module: "calendar",
			header: "Calendar",
			position: "top_left",
			config: {
				calendars: [
					{
						symbol: "calendar-check",
						url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
					
				         },
                                         {

						symbol: "calendar-plus-o ",
						url: "https://calendar.google.com/XXXXXXXXX/basic.ics"
					},
					{
						symbol: "calendar-plus-o ",
						url: "https://calendar.google.com/XXXXXXX/basic.ics"
				}	
				]
      }
			
		  },
		  {
			module: "helloworld",
		        position: "top_bar",
		        config: {
			         
			         text: "Welcome to the Carls Residence"
			        } 
		  },
		  {
			
                         module: "MMM-DarkSkyForecast",
                         header: "Weather",
                         position: "top_right",
                         classes: "default everyone",
                         disabled: false,
                         config: {
                                  apikey: "Xxxxxxxxxxdda4d069a",
                                  latitude: "39.548935",
                                  longitude: "-89.294533",      
                                  iconset: "4c",
                                  concise: false,
                                  forecastLayout: "table"
                                 }
			
		  },
		  {
			 module: "MMM-MyScoreboard",
                         position: "bottom_left",
                         classes: "default everyone",
                         header: "My Scoreboard",
                         config: {
                                  showLeagueSeparators: true,
                                  colored: true,
                                  viewStyle: "mediumLogos",
                                     sports: [
                                              {
                                               league: "NHL",
                                               groups: ["Western"]
                                              },
                                              {
                                               league: "NFL",
                                               groups: ["NFC North"]
                                              },
                                              {
                                               league: "MLB",
                                               groups: ["NL Central"]
                                             },
                                             {
                                              league: "NCAAM",
                                              groups: ["Big Ten"]
                                             },
                                             {
                                              league: "NCAAF",
                                              groups: ["Big Ten"]
                                             }
                                       ]
                                  }
		  },
		  {
		

		       module: 'MMM-iFrame-Ping',
		       position: 'bottom_left',	
		       config: {
			        // See 'Configuration options' for more information.
			        url: "https://radar.weather.gov/radar.php?rid=ILX&amp;product=NCR&amp;overlay=11101111&amp;loop=yes", 
			        autoRefresh: true, 
			        updateInterval: 10, 
			        displayLastUpdate: true,
			        width: "100%", 
			        height: "400px", 
			       scrolling: "no" 
			}
	           },
                   {
              


                	module: "newsfeed",
			position: "bottom_bar",
			config: {
				 feeds: [
					{
						title: "Fox News",
						url: "http://feeds.foxnews.com/foxnews/latest"
					}
				 ],
				  showSourceTitle: true,
				  showPublishDate: true
			        }
		 },
	   ]

};


if (typeof module !== "undefined") {module.exports = config;}
</code></pre>
<p dir="auto">You missed some <code>,</code>, some <code>]</code> and some <code>}</code><br />
Oh, and you should never post your apikeys or links to personal calendars. I truncated both for you</p>
]]></description><link>https://forum.magicmirror.builders/post/51353</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51353</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Sat, 02 Feb 2019 20:09:52 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sat, 02 Feb 2019 08:51:27 GMT]]></title><description><![CDATA[<p dir="auto">One of the best commands to know is</p>
<pre><code> npm run config:check
</code></pre>
<p dir="auto">Start at the topmost error and work your way down the file - it’s got lots of problems, but is easily fixed. Also, I <em>highly</em> recommend a graphical type editor if possible - Geany is what I use.</p>
<p dir="auto">I installed samba on my magic mirror so I can edit with the PC version of Geany and save it right to the Pi. It’s great.</p>
]]></description><link>https://forum.magicmirror.builders/post/51302</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51302</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Sat, 02 Feb 2019 08:51:27 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sat, 02 Feb 2019 08:38:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a> said in <a href="/post/51281">I am stuck need help</a>:</p>
<p dir="auto">In your config fil are missing a lot of , and ]<br />
check this</p>
]]></description><link>https://forum.magicmirror.builders/post/51299</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51299</guid><dc:creator><![CDATA[robiv8]]></dc:creator><pubDate>Sat, 02 Feb 2019 08:38:25 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sat, 02 Feb 2019 02:59:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a> said in <a href="/post/51287">I am stuck need help</a>:</p>
<blockquote>
<p dir="auto">Thank you, I’ll try that. I’m honestly in over my head i believe, but I’m gonna keep working on it.</p>
</blockquote>
<p dir="auto">We all were in the beginning…hang in there it’ll get easier for you :)</p>
]]></description><link>https://forum.magicmirror.builders/post/51291</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51291</guid><dc:creator><![CDATA[cowboysdude]]></dc:creator><pubDate>Sat, 02 Feb 2019 02:59:30 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sat, 02 Feb 2019 02:56:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a></p>
<p dir="auto">You’re welcome. If you have trouble adding one module, by all means, come back here and ask for help. Troubleshooting the addition of one module is a whole lot easier than troubleshooting your entire config. So, start with the default config and try adding a single module. Keep me posted</p>
]]></description><link>https://forum.magicmirror.builders/post/51290</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51290</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Sat, 02 Feb 2019 02:56:17 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sat, 02 Feb 2019 02:31:15 GMT]]></title><description><![CDATA[<p dir="auto">Thank you for the help</p>
]]></description><link>https://forum.magicmirror.builders/post/51289</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51289</guid><dc:creator><![CDATA[dcarls91]]></dc:creator><pubDate>Sat, 02 Feb 2019 02:31:15 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sat, 02 Feb 2019 02:14:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcarls91" aria-label="Profile: dcarls91">@<bdi>dcarls91</bdi></a></p>
<p dir="auto">You’ll be fine. :thumbsup:</p>
<p dir="auto"><a href="https://forum.magicmirror.builders/topic/4231/how-to-add-modules-for-absolute-beginners">https://forum.magicmirror.builders/topic/4231/how-to-add-modules-for-absolute-beginners</a></p>
]]></description><link>https://forum.magicmirror.builders/post/51288</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51288</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Sat, 02 Feb 2019 02:14:43 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Sat, 02 Feb 2019 02:13:22 GMT]]></title><description><![CDATA[<p dir="auto">Thank you, I’ll try that. I’m honestly in over my head i believe, but I’m gonna keep working on it.</p>
]]></description><link>https://forum.magicmirror.builders/post/51287</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51287</guid><dc:creator><![CDATA[dcarls91]]></dc:creator><pubDate>Sat, 02 Feb 2019 02:13:22 GMT</pubDate></item><item><title><![CDATA[Reply to I am stuck need help on Fri, 01 Feb 2019 23:41:32 GMT]]></title><description><![CDATA[<p dir="auto">You may want to start from scratch, adding one module at a time and running the mirror to confirm your entries are correct. Then add the next module and repeat. There are a bunch of errors which leads me to believe that you added everything at once. Really, that’s the best way to do it and you learn the process at the same time. If an entry fails then you know where the problem is because you’re saving the config after each successful addition.</p>
]]></description><link>https://forum.magicmirror.builders/post/51282</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51282</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Fri, 01 Feb 2019 23:41:32 GMT</pubDate></item></channel></rss>