<?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[Remote control]]></title><description><![CDATA[<p dir="auto">When i add this to my config my mirror stops working soon as i delete it starts again</p>
<p dir="auto">if i put my ip addy in for the pi with ports 8080 into my phone i can see the mirror but no remote control options where am i going wrong please</p>
<pre><code>{
module: ‘MMM-Remote-Control’
// uncomment the following line to show the URL of the remote control on the mirror
, position: ‘bottom_left’
// you can hide this module afterwards from the remote control itself
config: {
customCommand: {}, // Optional, See “Using Custom Commands” below
customMenu: “custom_menu.json”, // Optional, See “Custom Menu Items” below
showModuleApiMenu: true, // Optional, Enable the Module Controls menu
apiKey: “”, // Optional, See API/README.md for details
}
},
</code></pre>
<p dir="auto">Only thing i have working with my pi is kodi and thats on a spare i am a total NOOB and in need of a lot of help</p>
]]></description><link>https://forum.magicmirror.builders/topic/12968/remote-control</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 12:37:12 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/12968.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 01 Jun 2020 04:49:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Remote control on Tue, 22 Sep 2020 00:09:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/videogame95" aria-label="Profile: videogame95">@<bdi>videogame95</bdi></a> show the config for his module and aove/below it</p>
<p dir="auto">a module is</p>
<pre><code>{
   module:"name",
   position:"something",
   config: {
      ....
      module specifc values
      ...
    }
},
</code></pre>
<p dir="auto">note that whre u add this MAY reqire a trailing comma on the last line of the prior module, meaning, more coming</p>
<p dir="auto">keep the braces and brackets aligned up and down,</p>
]]></description><link>https://forum.magicmirror.builders/post/82185</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82185</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 22 Sep 2020 00:09:52 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Mon, 21 Sep 2020 22:56:49 GMT]]></title><description><![CDATA[<p dir="auto">Hi l see your having a similar problem as when add the script into my config file it stops l also remove the //<br />
To position it a the left bottom but it still didn’t work<br />
I set the IP. 0.0.0.0 and closed brackets []<br />
Set up any one on my IP address<br />
But it still no working.</p>
<p dir="auto">I know we should get a IP address on bottom  of the mirror to type into our phone which open up app controller.</p>
<p dir="auto">If any can help us both please reply.</p>
]]></description><link>https://forum.magicmirror.builders/post/82180</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82180</guid><dc:creator><![CDATA[videogame95]]></dc:creator><pubDate>Mon, 21 Sep 2020 22:56:49 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Mon, 08 Jun 2020 23:18:29 GMT]]></title><description><![CDATA[<p dir="auto">its solved</p>
]]></description><link>https://forum.magicmirror.builders/post/76823</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76823</guid><dc:creator><![CDATA[hawkeye]]></dc:creator><pubDate>Mon, 08 Jun 2020 23:18:29 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Mon, 08 Jun 2020 14:44:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/shawnlane" aria-label="Profile: shawnlane">@<bdi>shawnlane</bdi></a> said in <a href="/post/76790">Remote control</a>:</p>
<blockquote>
<p dir="auto">I have so much to learn.</p>
</blockquote>
<p dir="auto">there was a bug in 2.11 for that file… fixes only come every 3 months…  so the workaround it to put the old file back</p>
]]></description><link>https://forum.magicmirror.builders/post/76796</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76796</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 08 Jun 2020 14:44:46 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Mon, 08 Jun 2020 14:13:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hawkeye" aria-label="Profile: hawkeye">@<bdi>hawkeye</bdi></a> Thank you for posting. This corrected my problem! I have so much to learn. Off to my next issue with getting the Google Photos module to work.</p>
]]></description><link>https://forum.magicmirror.builders/post/76790</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76790</guid><dc:creator><![CDATA[shawnlane]]></dc:creator><pubDate>Mon, 08 Jun 2020 14:13:20 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Wed, 03 Jun 2020 12:38:41 GMT]]></title><description><![CDATA[<p dir="auto">I deleted every thing in the socketclient.js file and replaced with the following now the remote works like a charm</p>
<p dir="auto">var MMSocket = function(moduleName) {<br />
var self = this;</p>
<pre><code>if (typeof moduleName !== "string") {
	throw new Error("Please set the module name for the MMSocket.");
}

self.moduleName = moduleName;

// Private Methods
self.socket = io("/" + self.moduleName);
var notificationCallback = function() {};

var onevent = self.socket.onevent;
self.socket.onevent = function(packet) {
	var args = packet.data || [];
	onevent.call(this, packet);    // original call
	packet.data = ["*"].concat(args);
	onevent.call(this, packet);      // additional call to catch-all
};

// register catch all.
self.socket.on("*", function(notification, payload) {
	if (notification !== "*") {
		notificationCallback(notification, payload);
	}
});

// Public Methods
this.setNotificationCallback = function(callback) {
	notificationCallback = callback;
};

this.sendNotification = function(notification, payload) {
	if (typeof payload === "undefined") {
		payload = {};
	}
	self.socket.emit(notification, payload);
};
</code></pre>
<p dir="auto">};</p>
]]></description><link>https://forum.magicmirror.builders/post/76432</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76432</guid><dc:creator><![CDATA[hawkeye]]></dc:creator><pubDate>Wed, 03 Jun 2020 12:38:41 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Wed, 03 Jun 2020 12:13:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hawkeye" aria-label="Profile: hawkeye">@<bdi>hawkeye</bdi></a> i just searched in the forum on 2.11 remote control, that was the top result</p>
]]></description><link>https://forum.magicmirror.builders/post/76430</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76430</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 03 Jun 2020 12:13:20 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Wed, 03 Jun 2020 12:12:29 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> see your totally awesome that’s fixed now wahoo</p>
<p dir="auto">with your help im sure you could help me get this working awsome</p>
]]></description><link>https://forum.magicmirror.builders/post/76429</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76429</guid><dc:creator><![CDATA[hawkeye]]></dc:creator><pubDate>Wed, 03 Jun 2020 12:12:29 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Wed, 03 Jun 2020 11:59:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hawkeye" aria-label="Profile: hawkeye">@<bdi>hawkeye</bdi></a> you are replacing the contents of ~/MagicMirror/js/socketclient.js</p>
<p dir="auto">see this post for the (old) contents to put IN the file<br />
<a href="https://forum.magicmirror.builders/topic/12485/has-anyone-got-mmm-remote-control-working-on-mm-2-11/10?page=1">https://forum.magicmirror.builders/topic/12485/has-anyone-got-mmm-remote-control-working-on-mm-2-11/10?page=1</a></p>
]]></description><link>https://forum.magicmirror.builders/post/76428</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76428</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 03 Jun 2020 11:59:15 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Wed, 03 Jun 2020 11:52:04 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> you have been a grate help so far and yes i know i am annoying but i cant find what i am to do</p>
]]></description><link>https://forum.magicmirror.builders/post/76427</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76427</guid><dc:creator><![CDATA[hawkeye]]></dc:creator><pubDate>Wed, 03 Jun 2020 11:52:04 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Wed, 03 Jun 2020 11:27:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hawkeye" aria-label="Profile: hawkeye">@<bdi>hawkeye</bdi></a> you are replacing one file, no programming required</p>
]]></description><link>https://forum.magicmirror.builders/post/76425</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76425</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 03 Jun 2020 11:27:47 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Wed, 03 Jun 2020 03:58:26 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> yeah I’m no programmer</p>
<p dir="auto">i need an idiots guide to things</p>
]]></description><link>https://forum.magicmirror.builders/post/76416</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76416</guid><dc:creator><![CDATA[hawkeye]]></dc:creator><pubDate>Wed, 03 Jun 2020 03:58:26 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Wed, 03 Jun 2020 03:53:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hawkeye" aria-label="Profile: hawkeye">@<bdi>hawkeye</bdi></a> there is a bug on 2.11 tgat stops remote control from working.</p>
<p dir="auto">search the forum for the fix</p>
]]></description><link>https://forum.magicmirror.builders/post/76415</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76415</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 03 Jun 2020 03:53:24 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Wed, 03 Jun 2020 03:50:40 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> said in <a href="/post/76288">Remote control</a>:</p>
<blockquote>
<p dir="auto">{<br />
module: ‘MMM-Remote-Control’,<br />
position: ‘bottom_left’,<br />
config: {<br />
customCommand: {}, 		 // Optional, See “Using Custom Commands” below<br />
customMenu: “custom_menu.json”, // Optional, See “Custom Menu Items” below<br />
showModuleApiMenu: true, // Optional, Enable the Module Controls menu<br />
apiKey: “”, 			 // Optional, See API/README.md for details<br />
}<br />
},</p>
</blockquote>
<p dir="auto">You rock that fixed that part now i just need to make it show modules so i can turn them off</p>
]]></description><link>https://forum.magicmirror.builders/post/76414</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76414</guid><dc:creator><![CDATA[hawkeye]]></dc:creator><pubDate>Wed, 03 Jun 2020 03:50:40 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Mon, 01 Jun 2020 11:15:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hawkeye" aria-label="Profile: hawkeye">@<bdi>hawkeye</bdi></a> u need a comma at the end of each line… the one at the front is for the line before, but after has no ,</p>
<p dir="auto">also, check the actual text in config.js, the quote marcks, both single and double are the wrong kind, they are the word processing app type… (as they lean)… u need the text kind, straight up and down</p>
<pre><code>{
	module: 'MMM-Remote-Control',
	position: 'bottom_left',
	config: {
		customCommand: {}, 		 // Optional, See "Using Custom Commands" below
		customMenu: "custom_menu.json", // Optional, See "Custom Menu Items" below
		showModuleApiMenu: true, // Optional, Enable the Module Controls menu
		apiKey: "", 			 // Optional, See API/README.md for details
	}
},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/76288</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76288</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 01 Jun 2020 11:15:08 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Mon, 01 Jun 2020 10:22:43 GMT]]></title><description><![CDATA[<p dir="auto">i tried that still no joy</p>
<p dir="auto">what i want to do is to be able to add and remove modules from my phone and having no luck</p>
]]></description><link>https://forum.magicmirror.builders/post/76284</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76284</guid><dc:creator><![CDATA[hawkeye]]></dc:creator><pubDate>Mon, 01 Jun 2020 10:22:43 GMT</pubDate></item><item><title><![CDATA[Reply to Remote control on Mon, 01 Jun 2020 08:01:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hawkeye" aria-label="Profile: hawkeye">@<bdi>hawkeye</bdi></a>  I dont use this module, but it looks like you have , position: ‘bottom_left’   You need to remove the comma at start of line.</p>
]]></description><link>https://forum.magicmirror.builders/post/76278</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/76278</guid><dc:creator><![CDATA[JohnBachini]]></dc:creator><pubDate>Mon, 01 Jun 2020 08:01:30 GMT</pubDate></item></channel></rss>