<?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-ResRobot - Public transport information for Sweden]]></title><description><![CDATA[<h1>Description:</h1>
<p dir="auto">MMM-ResRobot is a module that displays departure times for one or more public transport stops in Sweden. It uses the ResRobot API which is a collaboration between a number of public transport providers.</p>
<h1>Screenshots:</h1>
<h1>Download:</h1>
<p dir="auto">[card:Alvinger/MMM-ResRobot]</p>
<h1>Version 1</h1>
<p dir="auto">Initial release</p>
<h1>Version 1.1</h1>
<p dir="auto">One minor change: transportation type icons are now displayed (to the left of the linenumber). All rail-bound types are displayed as trains (fa-train), all buses are displayed as bus (fa-bus) and all waterborne transportation is displayed as ship (fa-ship).</p>
<h1>Version 1.2</h1>
<p dir="auto">Added config option <em>skipMinutes</em>. Allows for skipping of departures within <em>skipMinutes</em> minutes from now. Default is 0 (zero).</p>
<h1>Version 1.3</h1>
<p dir="auto">Reworked the updating logic. For some reason the module stopped updating in some cases. This version also reduces the number of API calls to Resrobot.<br />
NOTE! The configuration has been changed in this version. Added new array “Routes” consisting of pairs of “from” and “to” (“to” can be empty but must be present). This is a breaking change.<br />
Previous configuration:</p>
<pre><code>from: "from1,from2,from3",
to: "to1,,to3"
</code></pre>
<p dir="auto">New configuration:</p>
<pre><code>routes: [
  from: "from1", to: "to1",
  from: "from2", to: "",
  from: "from3", to: "to3",
]</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/730/mmm-resrobot-public-transport-information-for-sweden</link><generator>RSS for Node</generator><lastBuildDate>Sun, 10 May 2026 08:19:10 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/730.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 29 Sep 2016 10:56:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Sun, 11 Feb 2024 18:03:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/axllin" aria-label="Profile: axllin">@<bdi>axllin</bdi></a> the<br />
module name<br />
folder name<br />
modulename.js<br />
and<br />
register inside the modulename.js</p>
<p dir="auto">must match exactly in text case</p>
<p dir="auto">the message says we found the folder matching (cause there is an error for that too)<br />
but not the js</p>
]]></description><link>https://forum.magicmirror.builders/post/115520</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/115520</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 11 Feb 2024 18:03:18 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Sun, 11 Feb 2024 17:58:56 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/alvinger" aria-label="Profile: Alvinger">@<bdi>Alvinger</bdi></a> I have a question for you!</p>
<p dir="auto">When I run npm run start I get the message:</p>
<pre><code>[name-here]@raspberrypi:~/MagicMirror $ npm run start

&gt; magicmirror@2.26.0 start
&gt; DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js

[11.02.2024 18:46.51.586] [LOG]   Starting MagicMirror: v2.26.0
[11.02.2024 18:46.51.592] [LOG]   Loading config ...
[11.02.2024 18:46.51.596] [DEBUG] config template file not exists, no envsubst
[11.02.2024 18:46.51.600] [LOG]   Loading module helpers ...
[11.02.2024 18:46.51.603] [LOG]   No helper found for module: alert.
[11.02.2024 18:46.51.649] [LOG]   Initializing new module helper ...
[11.02.2024 18:46.51.651] [LOG]   Module helper loaded: updatenotification
[11.02.2024 18:46.51.655] [LOG]   No helper found for module: clock.
[11.02.2024 18:46.51.659] [LOG]   No helper found for module: weather.
[11.02.2024 18:46.51.661] [WARN]  No /home/[name-here]/MagicMirror/js/../modules/MMM-ResRobot/MMM-ResRobot.js found for module: MMM-ResRobot.
[11.02.2024 18:46.51.663] [LOG]   No helper found for module: MMM-ResRobot.
</code></pre>
<p dir="auto">The module doesn’t load and it posts something about not finding a .js for the module?</p>
<p dir="auto">My current config in the config.js looks like this where I have pulled the station IDs from Trafiklab:</p>
<pre><code>{
            module: "MMM-ResRobot",
            position: "top_right",
            header: "Departures",
            config: {
                routes: [
                    {from: "[removed]", to: "[removed]"},
                    ],
                skipMinutes: 0,
                maximumEntries: 3,
                maximumDuration: 60,
                        getRelative: 10, 
                truncateAfter: 5,
                truncateLineAfter: 5,
                            showTrack: true,
                coloredIcons: false,
                apiKey: "[my-api-key]",
                      }
            },
</code></pre>
<p dir="auto">Do you know what would be the issue with the module loading?</p>
<p dir="auto">EDIT: I found the issue. I had the folder in /modules named as MMM-ResRobot-master. Removing the -master made it match the given module name in the config.js. It now works.</p>
]]></description><link>https://forum.magicmirror.builders/post/115519</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/115519</guid><dc:creator><![CDATA[axllin]]></dc:creator><pubDate>Sun, 11 Feb 2024 17:58:56 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Sat, 16 Dec 2023 20:53:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/populus" aria-label="Profile: Populus">@<bdi>Populus</bdi></a> According to  Samtrafikens webpage Kalmar länstrafik is part of their network and should be included. Is there a specific station I could try to look up?</p>
]]></description><link>https://forum.magicmirror.builders/post/113401</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/113401</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Sat, 16 Dec 2023 20:53:34 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Sat, 16 Dec 2023 20:14:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alvinger" aria-label="Profile: Alvinger">@<bdi>Alvinger</bdi></a> said in <a href="/post/113363">MMM-ResRobot - Public transport information for Sweden</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/populus" aria-label="Profile: Populus">@<bdi>Populus</bdi></a> ResRobot covers all of Sweden as far as I know.</p>
</blockquote>
<p dir="auto">It doesn’t appear to have my local stations. Our network is “Kalmar Länstrafik”.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/noorm91" aria-label="Profile: noorm91">@<bdi>noorm91</bdi></a> said in <a href="/post/113366">MMM-ResRobot - Public transport information for Sweden</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/populus" aria-label="Profile: Populus">@<bdi>Populus</bdi></a> which stations are you looking for in Kalmar?</p>
</blockquote>
]]></description><link>https://forum.magicmirror.builders/post/113400</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/113400</guid><dc:creator><![CDATA[Populus]]></dc:creator><pubDate>Sat, 16 Dec 2023 20:14:41 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Thu, 14 Dec 2023 22:39:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/populus" aria-label="Profile: Populus">@<bdi>Populus</bdi></a> which stations are you looking for in Kalmar?</p>
]]></description><link>https://forum.magicmirror.builders/post/113366</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/113366</guid><dc:creator><![CDATA[noorm91]]></dc:creator><pubDate>Thu, 14 Dec 2023 22:39:48 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Thu, 14 Dec 2023 22:32:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alvinger" aria-label="Profile: Alvinger">@<bdi>Alvinger</bdi></a> It’s all good, thank you!<br />
It seems that you have to restart the rpi for every change you do.</p>
<p dir="auto">Is there a way to see how many changes you have to do?<br />
For example 1. Bus departure station &gt; 2. Transit station &gt; 3. Final destination.<br />
Would also be nice to see how many minutes it takes from A-B.</p>
]]></description><link>https://forum.magicmirror.builders/post/113364</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/113364</guid><dc:creator><![CDATA[noorm91]]></dc:creator><pubDate>Thu, 14 Dec 2023 22:32:04 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Thu, 14 Dec 2023 22:30:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/populus" aria-label="Profile: Populus">@<bdi>Populus</bdi></a> ResRobot covers all of Sweden as far as I know.</p>
]]></description><link>https://forum.magicmirror.builders/post/113363</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/113363</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Thu, 14 Dec 2023 22:30:23 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Thu, 14 Dec 2023 20:31:19 GMT]]></title><description><![CDATA[<p dir="auto">I quickly looked but couldn’t find if “Kalmar län” is included?</p>
]]></description><link>https://forum.magicmirror.builders/post/113357</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/113357</guid><dc:creator><![CDATA[Populus]]></dc:creator><pubDate>Thu, 14 Dec 2023 20:31:19 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Thu, 14 Dec 2023 08:02:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/noorm91" aria-label="Profile: noorm91">@<bdi>noorm91</bdi></a> Please post your entire config for ResRobot (with the secrets masked).</p>
]]></description><link>https://forum.magicmirror.builders/post/113297</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/113297</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Thu, 14 Dec 2023 08:02:49 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Wed, 13 Dec 2023 22:02:53 GMT]]></title><description><![CDATA[<p dir="auto">Has anyone gotten ResRobot v2.1 to work?<br />
If so how does your config look like?</p>
<p dir="auto">I’m trying {from: “740000260”, to: “740000120”}, the rest is default except apiKey of course.</p>
]]></description><link>https://forum.magicmirror.builders/post/113286</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/113286</guid><dc:creator><![CDATA[noorm91]]></dc:creator><pubDate>Wed, 13 Dec 2023 22:02:53 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Tue, 08 Nov 2022 22:41:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/svent" aria-label="Profile: SvenT">@<bdi>SvenT</bdi></a> I think that if you just hide the module it will stop updating (but I’m not sure). Try it.</p>
]]></description><link>https://forum.magicmirror.builders/post/105735</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/105735</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Tue, 08 Nov 2022 22:41:15 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Tue, 08 Nov 2022 09:07:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alvinger" aria-label="Profile: Alvinger">@<bdi>Alvinger</bdi></a> I see.<br />
My local bus station has departures every 3 minutes almost all day. :-(<br />
I’ll tinker with the change profile module to see if I can pause the Reslust module.</p>
<p dir="auto">Cheers<br />
/Sven</p>
]]></description><link>https://forum.magicmirror.builders/post/105732</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/105732</guid><dc:creator><![CDATA[SvenT]]></dc:creator><pubDate>Tue, 08 Nov 2022 09:07:24 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Mon, 07 Nov 2022 22:46:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/svent" aria-label="Profile: SvenT">@<bdi>SvenT</bdi></a> I have experimented with a number of algorithms for minimizing updates but ended up with the one implemented. The current algorithm is:</p>
<ul>
<li>
<p dir="auto">If initial request, get updates from Trafiklab</p>
</li>
<li>
<p dir="auto">If the first item in departure list (per <em><strong>routeId</strong></em>) is “old”, i.e. before cutoff time (now + skipMinutes), clear list (for <em><strong>routeId</strong></em>) and get updates from Trafiklab</p>
</li>
</ul>
<p dir="auto">What the above means is that updates only occur ON ACTUAL DEPARTURES, e.g. if a bus departs every 15 minutes the module will get updates from Trafiklab every 15 minutes (per <em><strong>routeId</strong></em>). In rush hour this often means that the module get updates every minute but at night it might only update once per 60 minutes or longer (per <em><strong>routeId</strong></em>). This behavior has the benefit of automatically adjusting to rush hour and slow hours without user intervention or tweaking.</p>
<p dir="auto">If only one <em><strong>routeId</strong></em> is configured, the number of Trafiklab updates is usually way below the Trafiklab suggestions.</p>
<p dir="auto">/j</p>
]]></description><link>https://forum.magicmirror.builders/post/105731</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/105731</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Mon, 07 Nov 2022 22:46:42 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Mon, 07 Nov 2022 17:45:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/svent" aria-label="Profile: SvenT">@<bdi>SvenT</bdi></a> I would post an issue to the module GitHub issues page to engage the author</p>
]]></description><link>https://forum.magicmirror.builders/post/105724</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/105724</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 07 Nov 2022 17:45:50 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Mon, 07 Nov 2022 14:11:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alvinger" aria-label="Profile: Alvinger">@<bdi>Alvinger</bdi></a> Thank You for a brilliant module that works like a charm.<br />
Do You have a simple fix for limiting updates?<br />
I want frequent updates for my bus stop when present, and none when I’m not present…<br />
I have a PIR sensor hooked up. Possible to use that? Suspend module?<br />
OR a simple schedule as proposed by Trafiklab:<br />
<a href="https://www.trafiklab.se/docs/using-trafiklab-data/best-practices/limiting-requests/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.trafiklab.se/docs/using-trafiklab-data/best-practices/limiting-requests/</a></p>
<p dir="auto">Not a high prio request…</p>
<p dir="auto">Cheers<br />
/Sven</p>
]]></description><link>https://forum.magicmirror.builders/post/105723</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/105723</guid><dc:creator><![CDATA[SvenT]]></dc:creator><pubDate>Mon, 07 Nov 2022 14:11:39 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Wed, 23 Sep 2020 18:03:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zapman" aria-label="Profile: Zapman">@<bdi>Zapman</bdi></a> You’re welcome. Do let me know if you see anything you want to add/change.</p>
]]></description><link>https://forum.magicmirror.builders/post/82299</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82299</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Wed, 23 Sep 2020 18:03:10 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Wed, 23 Sep 2020 18:01:44 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>  Really strange. You got the expected behavior but <a class="plugin-mentions-user plugin-mentions-a" href="/user/zapman" aria-label="Profile: Zapman">@<bdi>Zapman</bdi></a> and I got it to work when we removed the comment. I should state that I use a fork of MM as my screens are iPad 4 running IOS9.3.5 which might have an impact. But I don’t know which MM <a class="plugin-mentions-user plugin-mentions-a" href="/user/zapman" aria-label="Profile: Zapman">@<bdi>Zapman</bdi></a> uses.</p>
]]></description><link>https://forum.magicmirror.builders/post/82297</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82297</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Wed, 23 Sep 2020 18:01:44 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Wed, 23 Sep 2020 17:05:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alvinger" aria-label="Profile: Alvinger">@<bdi>Alvinger</bdi></a> i added that config to another module with the comment and got what was expected.  1 route structure in an array</p>
]]></description><link>https://forum.magicmirror.builders/post/82295</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82295</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 23 Sep 2020 17:05:30 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Wed, 23 Sep 2020 17:00:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alvinger" aria-label="Profile: Alvinger">@<bdi>Alvinger</bdi></a> Everything is working great now! Thank you for the fast response to my issue! I’ll use this module a lot from now on :smiling_face_with_open_mouth:</p>
]]></description><link>https://forum.magicmirror.builders/post/82294</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82294</guid><dc:creator><![CDATA[Zapman]]></dc:creator><pubDate>Wed, 23 Sep 2020 17:00:03 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Wed, 23 Sep 2020 14:33:32 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> Yes, they should be. However, when I pasted <a class="plugin-mentions-user plugin-mentions-a" href="/user/zapman" aria-label="Profile: Zapman">@<bdi>Zapman</bdi></a>’s config into my test site, it didn’t work. When I removed the comment it worked. Go figure!</p>
]]></description><link>https://forum.magicmirror.builders/post/82282</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82282</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Wed, 23 Sep 2020 14:33:32 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Wed, 23 Sep 2020 14:32:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alvinger" aria-label="Profile: Alvinger">@<bdi>Alvinger</bdi></a> said in <a href="/post/82280">MMM-ResRobot - Public transport information for Sweden</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zapman" aria-label="Profile: Zapman">@<bdi>Zapman</bdi></a> You can’t have a comment in the middle of the config. Remove the " // stations from: " and it should work.</p>
</blockquote>
<p dir="auto">sure you can, they are ignored, there are comments all over the place</p>
]]></description><link>https://forum.magicmirror.builders/post/82281</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82281</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 23 Sep 2020 14:32:24 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Wed, 23 Sep 2020 14:30:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zapman" aria-label="Profile: Zapman">@<bdi>Zapman</bdi></a> said in <a href="/post/82254">MMM-ResRobot - Public transport information for Sweden</a>:</p>
<blockquote>
<pre><code>                {
			module: "MMM-ResRobot",
                        position: "top_right",
                        header: "Departures",
                        config: {
                                routes: [ // stations from: 
                                        {from: "740015972", to: ""}, 
                                ],
                                apiKey: "API-KEY-HERE"
                        },
                },
</code></pre>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zapman" aria-label="Profile: Zapman">@<bdi>Zapman</bdi></a> You can’t have a comment in the middle of the config. Remove the " // stations from: " and it should work.</p>
<p dir="auto">This is what it looks like for me:<br />
<img src="/assets/uploads/files/1600871438822-a0a58f9d-1271-4144-bca1-34d3746a4ed6-image.png" alt="a0a58f9d-1271-4144-bca1-34d3746a4ed6-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/82280</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82280</guid><dc:creator><![CDATA[Alvinger]]></dc:creator><pubDate>Wed, 23 Sep 2020 14:30:45 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-ResRobot - Public transport information for Sweden on Wed, 23 Sep 2020 14:29:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alvinger" aria-label="Profile: Alvinger">@<bdi>Alvinger</bdi></a> - thx for you work in this module!<br />
Sidenote, after updated my Rpi (3B) my wifi reception is far worst, never had problem with it before but now it’s loosing connection after a couple of minutes - but I was fast and manage to update to latest ResRobot :) working nicely</p>
]]></description><link>https://forum.magicmirror.builders/post/82279</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/82279</guid><dc:creator><![CDATA[sweup]]></dc:creator><pubDate>Wed, 23 Sep 2020 14:29:02 GMT</pubDate></item></channel></rss>