<?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[MMM-ModuleScheduler for Monitor control]]></title><description><![CDATA[<p dir="auto">Hi All, I am VERY new to all this so apologies.</p>
<p dir="auto">I am having trouble using the scheduler to control my monitor.<br />
I installed both MMM-Modulescheduler and MMM-RemoteControl<br />
When i try to place the module in my config.js it causes the Mirror to fail to load.<br />
my config is an identical copy of the example given and yet it still falls over.<br />
any help is greatly appreciated.</p>
<pre><code>{
        module: 'MMM-ModuleScheduler',
        config: {
            notification_schedule: [
                // TURN THE MONITOR/SCREEN ON AT 07:30 EVERY DAY
                {notification: 'REMOTE_ACTION', schedule: '30 7 * * *', payload: {action: "MONITORON"}},
                // TURN THE MONITOR/SCREEN OFF AT 22:30 EVERY DAY
                {notification: 'REMOTE_ACTION', schedule: '30 22 * * *', payload: {action: "MONITOROFF"}},
                // RESTART THE MAGICMIRROR PROCESS AT 2am EVERY SUNDAY
                {notification: 'REMOTE_ACTION', schedule: '0 2 * * SUN', payload: {action: "RESTART"}}
            ]
        }
    },
</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/13426/mmm-modulescheduler-for-monitor-control</link><generator>RSS for Node</generator><lastBuildDate>Sat, 16 May 2026 18:27:16 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/13426.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 06 Aug 2020 13:30:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Sat, 08 Aug 2020 15:36:58 GMT]]></title><description><![CDATA[<p dir="auto">temporary fix for npm config:check</p>
<pre><code>edit ~/MagicMirror/js/check_config.js
</code></pre>
<p dir="auto">change line 57 to look like this</p>
<pre><code>		const messages = linter.verify(data);
</code></pre>
<p dir="auto">change line 66 to look like this</p>
<pre><code>	//		throw new Error("Wrong syntax in config file!");
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/79931</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79931</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 08 Aug 2020 15:36:58 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Fri, 07 Aug 2020 09:36:49 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> thank you so much for this. i think this is what i did then messed up the rest of the coding when i tried to move it around.<br />
the advice you gave above about looking at the  ] and } was great! i actually managed to get the mirror to boot with scheduler coded and i am now just testing if it will actually work.<br />
Fingers crossed!</p>
]]></description><link>https://forum.magicmirror.builders/post/79886</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79886</guid><dc:creator><![CDATA[tootiemac3]]></dc:creator><pubDate>Fri, 07 Aug 2020 09:36:49 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 17:03:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tootiemac3" aria-label="Profile: tootiemac3">@<bdi>tootiemac3</bdi></a></p>
<p dir="auto">i would guess that you pasted the ModuleScheduler module block in the wrong place, after the end for the modules ;[] array closure</p>
]]></description><link>https://forum.magicmirror.builders/post/79860</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79860</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 06 Aug 2020 17:03:09 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 16:39:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tootiemac3" aria-label="Profile: tootiemac3">@<bdi>tootiemac3</bdi></a> said in <a href="/post/79851">MMM-ModuleScheduler for Monitor control</a>:</p>
<blockquote>
<p dir="auto">] //&lt; — what is this?<br />
},   // &lt; - what is this?<br />
{<br />
module: “MMM-ModuleScheduler”</p>
</blockquote>
<blockquote>
<p dir="auto">];     // &lt; – what is ‘;’  this?</p>
</blockquote>
]]></description><link>https://forum.magicmirror.builders/post/79852</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79852</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 06 Aug 2020 16:39:07 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 17:02:00 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></p>
<pre><code>{
			module: "newsfeed",
			position: "bottom_bar",
			config: {
				feeds: [
					{
						title: "BBC UK",
						url: "https://feeds.bbci.co.uk/news/rss.xml?edition=uk"
					}
				],
				showSourceTitle: true,
				 showPublishDate: true,
				broadcastNewsFeeds: true, 
				broadcastNewsUpdates: true
			}
		},
	]  // &lt; --- this?
},  // &lt; --- this?
{
        module: "MMM-ModuleScheduler",
        config: {
            notification_schedule: [
                // TURN THE MONITOR/SCREEN ON AT 07:30 EVERY DAY
                {notification: 'REMOTE_ACTION', schedule: '20 15 * * *', payload: {action: "MONITORON"}},
                // TURN THE MONITOR/SCREEN OFF AT 22:30 EVERY  DAY
                {notification: 'REMOTE_ACTION', schedule: '25 15 * * *', payload: {action: "MONITOROFF"}},
                // RESTART THE MAGICMIRROR PROCESS AT 2am EVERY SUNDAY
                {notification: 'REMOTE_ACTION', schedule: '0 2 * * SUN', payload: {action: "RESTART"}}
            ]
        }
    };   //&lt; --- ';' this
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/79851</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79851</guid><dc:creator><![CDATA[tootiemac3]]></dc:creator><pubDate>Thu, 06 Aug 2020 17:02:00 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 15:06:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tootiemac3" aria-label="Profile: tootiemac3">@<bdi>tootiemac3</bdi></a> can u show the config please. change 1 or 2 char in any API key to something  to make it garbage</p>
]]></description><link>https://forum.magicmirror.builders/post/79850</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79850</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 06 Aug 2020 15:06:44 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 14:56:30 GMT]]></title><description><![CDATA[<p dir="auto">above that is the working news feed module.</p>
]]></description><link>https://forum.magicmirror.builders/post/79849</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79849</guid><dc:creator><![CDATA[tootiemac3]]></dc:creator><pubDate>Thu, 06 Aug 2020 14:56:30 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 14:43:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tootiemac3" aria-label="Profile: tootiemac3">@<bdi>tootiemac3</bdi></a><br />
ok, that means the real error occurred BEFORE line 201, and was detected there. so. show us before</p>
]]></description><link>https://forum.magicmirror.builders/post/79847</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79847</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 06 Aug 2020 14:43:13 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 14:38:41 GMT]]></title><description><![CDATA[<p dir="auto">Line 201 according to the config file is the line<br />
module: “MMM-ModuleScheduler”,</p>
]]></description><link>https://forum.magicmirror.builders/post/79846</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79846</guid><dc:creator><![CDATA[tootiemac3]]></dc:creator><pubDate>Thu, 06 Aug 2020 14:38:41 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 14:27:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tootiemac3" aria-label="Profile: tootiemac3">@<bdi>tootiemac3</bdi></a> ok, I can’t see line 201. show the config. paste the text, select it, and use the code block marker ‘&lt;/&gt;’ button to mark the selected text</p>
]]></description><link>https://forum.magicmirror.builders/post/79844</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79844</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 06 Aug 2020 14:27:55 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 14:24:38 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> its showing line 201 has the error.</p>
]]></description><link>https://forum.magicmirror.builders/post/79843</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79843</guid><dc:creator><![CDATA[tootiemac3]]></dc:creator><pubDate>Thu, 06 Aug 2020 14:24:38 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 14:16:20 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> im not 100% sure what you mean</p>
]]></description><link>https://forum.magicmirror.builders/post/79841</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79841</guid><dc:creator><![CDATA[tootiemac3]]></dc:creator><pubDate>Thu, 06 Aug 2020 14:16:20 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 14:10:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tootiemac3" aria-label="Profile: tootiemac3">@<bdi>tootiemac3</bdi></a> what line number is shown? I don’t see an error like that. show rest of module section in config. use code block pleasr</p>
]]></description><link>https://forum.magicmirror.builders/post/79839</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79839</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 06 Aug 2020 14:10:43 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 14:06:09 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> it tell me it could not validate the config file.<br />
then this is below that "SyntaxError: Invalid destructuring assignment target<br />
"</p>
]]></description><link>https://forum.magicmirror.builders/post/79837</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79837</guid><dc:creator><![CDATA[tootiemac3]]></dc:creator><pubDate>Thu, 06 Aug 2020 14:06:09 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ModuleScheduler for Monitor control on Thu, 06 Aug 2020 13:49:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tootiemac3" aria-label="Profile: tootiemac3">@<bdi>tootiemac3</bdi></a> what is the error displayed</p>
]]></description><link>https://forum.magicmirror.builders/post/79832</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/79832</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 06 Aug 2020 13:49:55 GMT</pubDate></item></channel></rss>