<?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-Memo not able to send messages to Magic Mirror]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">I have installed the module “Memo” and the memos are already shown on the screen of the display but I am not able to send messages to add lines to the memos. I tried:</p>
<p dir="auto"><strong>bolded text</strong><a href="http://192.168.1.102:8080/AddMemo?memoTitle=SHOPPING&amp;item=Fruits&amp;level=INFO**bolded" target="_blank" rel="noopener noreferrer nofollow ugc">http://192.168.1.102:8080/AddMemo?memoTitle=SHOPPING&amp;item=Fruits&amp;level=INFO**bolded</a> text**</p>
<p dir="auto">But I get the following lines on the screen from the pc where I tried to send the message:<br />
<strong>bolded text</strong>[1] 17426<br />
[2] 17427<br />
roger@Lappi:~$ bash: <a href="http://192.168.1.102:8080/AddMemo?memoTitle=SHOPPING:" target="_blank" rel="noopener noreferrer nofollow ugc">http://192.168.1.102:8080/AddMemo?memoTitle=SHOPPING:</a> Datei oder Verzeichnis nicht gefunden <strong>bolded text</strong><br />
Datei oder Verzeichnis nicht gefunden means "File or directory not found.</p>
<p dir="auto">After that I tried it with the following command:<br />
curl -G -v “<a href="http://192.168.1.102:8080/AddMemo?memoTitle=SHOPPING" target="_blank" rel="noopener noreferrer nofollow ugc">http://192.168.1.102:8080/AddMemo?memoTitle=SHOPPING</a>” --data-urlencode “item=Bonjour, êtes-vous allées dans votre boutique préférée ?”</p>
<p dir="auto">Result:</p>
<ul>
<li>Hostname was NOT found in DNS cache</li>
<li>Trying 192.168.1.102…</li>
<li>connect to 192.168.1.102 port 8080 failed: Verbindungsaufbau abgelehnt</li>
<li>Failed to connect to 192.168.1.102 port 8080: Verbindungsaufbau abgelehnt</li>
<li>Closing connection 0<br />
curl: (7) Failed to connect to 192.168.1.102 port 8080: Verbindungsaufbau abgelehnt</li>
</ul>
<p dir="auto">Now I edited the whitelist in the configfile with the IP adress from the Sending pc but the same result. :frowning_face:</p>
<p dir="auto">Can anybody help me to fill the memo stickers on my Magic Mirror?</p>
<p dir="auto">Thanks a lot for help :victory_hand:<br />
Roger</p>
]]></description><link>https://forum.magicmirror.builders/topic/7163/mmm-memo-not-able-to-send-messages-to-magic-mirror</link><generator>RSS for Node</generator><lastBuildDate>Fri, 15 May 2026 01:17:54 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/7163.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 12 May 2018 21:37:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-Memo not able to send messages to Magic Mirror on Fri, 20 Sep 2019 15:10:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fruitybebbles" aria-label="Profile: FruityBebbles">@<bdi>FruityBebbles</bdi></a> no problem, glad I can help… you don’t need to be a coder… but some of this stuff is very rigid in its requirements…</p>
]]></description><link>https://forum.magicmirror.builders/post/61486</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61486</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 20 Sep 2019 15:10:44 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Memo not able to send messages to Magic Mirror on Fri, 20 Sep 2019 15:04:25 GMT]]></title><description><![CDATA[<p dir="auto">Thanks! I appreciate your help, regardless  =) It’s people like you who keep me from giving up on thos stuff… I’m not a coder by any means, so thanks again…</p>
]]></description><link>https://forum.magicmirror.builders/post/61485</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61485</guid><dc:creator><![CDATA[FruityBebbles]]></dc:creator><pubDate>Fri, 20 Sep 2019 15:04:25 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Memo not able to send messages to Magic Mirror on Fri, 20 Sep 2019 13:40:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fruitybebbles" aria-label="Profile: FruityBebbles">@<bdi>FruityBebbles</bdi></a> I’m not the author, just another user trying to help…</p>
<p dir="auto">the code in node_helper.js<br />
defines how the module responds…</p>
<p dir="auto">and it says  for add</p>
<pre><code>	this.expressApp.get('/AddMemo', (req, res) =&gt; {
	var query = url.parse(req.url, true).query;
	var level = query.level;
	var memoTitle = query.memoTitle;
	var item = query.item;
</code></pre>
<p dir="auto"><a href="http://Pi" target="_blank" rel="noopener noreferrer nofollow ugc">http://Pi</a>’s_IP:port/addMemo?memoTitle=<strong>&amp;item=</strong>&amp;level=</p>
<p dir="auto">and for remove</p>
<pre><code>	this.expressApp.get('/RemoveMemo', (req, res) =&gt; {

	var query = url.parse(req.url, true).query;
	var memoTitle = query.memoTitle;
	var item = query.item;
</code></pre>
<p dir="auto"><a href="http://Pi" target="_blank" rel="noopener noreferrer nofollow ugc">http://Pi</a>’s_IP:port/RemoveMemo?memoTitle=<strong>&amp;item=</strong></p>
<p dir="auto">that is the only way this module responds</p>
<p dir="auto">so to remove, u need the exact text of the ‘item’ when u added it.<br />
u can use curl or http request , you don’t have to use a browser… I was just offering an easy way to test it out</p>
]]></description><link>https://forum.magicmirror.builders/post/61481</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61481</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 20 Sep 2019 13:40:31 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Memo not able to send messages to Magic Mirror on Fri, 20 Sep 2019 04:01:59 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 />
Thankyou for your quick response!<br />
I still spent days/so many hours trying to get it to work lol<br />
I couldn’t get it no matter how hard I tried and didn’t know why.<br />
Because of your response/ the link you commented, I was eventually able to have a memo be displayed…<br />
What helped me notice my progress was adding</p>
<pre><code>MemoDisplayIfEmpty= true
</code></pre>
<p dir="auto">to the config.js<br />
I am, however, still unsure of how to remove the entire memo, itself, though.</p>
<p dir="auto">What do I enter into the browser?<br />
Also, is there a simpler way to display the memo’s or do I have to type out</p>
<pre><code>http://Pi's_IP:port/addMemo?memoTitle=__&amp;item=__
</code></pre>
<p dir="auto">everytime I want a memo?<br />
Is there a way to type a memo out like an email (the subject= memoTitle and the body= item)?<br />
Like, how MMM-Remote-Control now allows you to send an alert?<br />
I’d really like this if it were a little more convenient.<br />
This is such a cool module, and can’t wait to incorporate voice control (that will make adding the memo’s super easily/ is more of what I’m looking for.)<br />
Thanks again, and I hope Im not annoying you too much with my noobness lol.</p>
]]></description><link>https://forum.magicmirror.builders/post/61472</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61472</guid><dc:creator><![CDATA[FruityBebbles]]></dc:creator><pubDate>Fri, 20 Sep 2019 04:01:59 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Memo not able to send messages to Magic Mirror on Mon, 16 Sep 2019 12:25:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fruitybebbles" aria-label="Profile: FruityBebbles">@<bdi>FruityBebbles</bdi></a> see my post to the other recent memo topic</p>
<p dir="auto"><a href="https://forum.magicmirror.builders/topic/2113/mmm-memo-add-some-memos-on-your-page-and-manage-them-through-http-request/34">https://forum.magicmirror.builders/topic/2113/mmm-memo-add-some-memos-on-your-page-and-manage-them-through-http-request/34</a></p>
]]></description><link>https://forum.magicmirror.builders/post/61351</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61351</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 16 Sep 2019 12:25:30 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Memo not able to send messages to Magic Mirror on Sun, 15 Sep 2019 20:47:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fuzzy" aria-label="Profile: Fuzzy">@<bdi>Fuzzy</bdi></a> really? Nobody is going to answer? It’s been a year… I actually have the exact same issue. The directions werent too clear because I thought I followed them to the tee…</p>
]]></description><link>https://forum.magicmirror.builders/post/61340</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61340</guid><dc:creator><![CDATA[FruityBebbles]]></dc:creator><pubDate>Sun, 15 Sep 2019 20:47:46 GMT</pubDate></item></channel></rss>