<?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[How to specify the Weather Type in a module which only uses the module name]]></title><description><![CDATA[<p dir="auto">I saw the following error msgs:</p>
<pre><code>[21.04.2021 15:12.39.799] [LOG]   Connecting socket for: currentweather
[21.04.2021 15:12.39.800] [WARN]  The module 'currentweather' is deprecated in favor of the 'weather'-module, please refer to the documentation for a migration path
[21.04.2021 15:12.39.802] [LOG]   Connecting socket for: weatherforecast
[21.04.2021 15:12.39.803] [WARN]  The module 'weatherforecast' is deprecated in favor of the 'weather'-module, please refer to the documentation for a migration path
</code></pre>
<p dir="auto">So I started looking at the documentation.</p>
<p dir="auto">I couldn’t find how to specify the forecast weather type for one slide, and the current weather type for another slide in the <a href="https://github.com/barnabycolby/MMM-Carousel" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-Carousel</a> which my MM currently uses.</p>
<p dir="auto">Can somebody tell me?</p>
]]></description><link>https://forum.magicmirror.builders/topic/14971/how-to-specify-the-weather-type-in-a-module-which-only-uses-the-module-name</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 12:10:44 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/14971.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 22 Apr 2021 00:04:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to specify the Weather Type in a module which only uses the module name on Sun, 25 Apr 2021 17:38:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/oldsunguy" aria-label="Profile: oldsunguy">@<bdi>oldsunguy</bdi></a> yeh… it should support using the identifier as well as the name… that would make things a lot easier…</p>
]]></description><link>https://forum.magicmirror.builders/post/91049</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91049</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 25 Apr 2021 17:38:35 GMT</pubDate></item><item><title><![CDATA[Reply to How to specify the Weather Type in a module which only uses the module name on Sun, 25 Apr 2021 17:35:44 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> , Thanks for replying.</p>
<p dir="auto">I am trying to migrate from the <a href="https://github.com/MichMich/MagicMirror/tree/master/modules/default/currentweather#readme" target="_blank" rel="noopener noreferrer nofollow ugc">currentweather</a> and <a href="https://github.com/MichMich/MagicMirror/tree/master/modules/default/weatherforecast#readme" target="_blank" rel="noopener noreferrer nofollow ugc">weatherforcast</a> modules to the new <a href="https://github.com/MichMich/MagicMirror/tree/master/modules/default/weather#readme" target="_blank" rel="noopener noreferrer nofollow ugc">weather</a> module.</p>
<p dir="auto">I am using the MMM-Carousel module. It seemed strange (to me) to use the same module name. I was attempting to show the weather module with type=current on one slide and the weather module with type=forecast on another slide but with the same position. There didn’t seem to be any way to do this.  I’ve since modified the config to use different positions so that a slide shows both current and forecast using the different positions.</p>
<p dir="auto">It kinda works as I am getting the correct header but it just shows “Loading…” ,</p>
]]></description><link>https://forum.magicmirror.builders/post/91048</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91048</guid><dc:creator><![CDATA[OldSunGuy]]></dc:creator><pubDate>Sun, 25 Apr 2021 17:35:44 GMT</pubDate></item><item><title><![CDATA[Reply to How to specify the Weather Type in a module which only uses the module name on Sat, 24 Apr 2021 18:57:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/oldsunguy" aria-label="Profile: oldsunguy">@<bdi>oldsunguy</bdi></a> said in <a href="/post/91018">How to specify the Weather Type in a module which only uses the module name</a>:</p>
<blockquote>
<p dir="auto">Can someone think of a way to use the new weather module in situation?</p>
</blockquote>
<p dir="auto">can u explain more…  that sentence doesn’t give much info</p>
]]></description><link>https://forum.magicmirror.builders/post/91019</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91019</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 24 Apr 2021 18:57:56 GMT</pubDate></item><item><title><![CDATA[Reply to How to specify the Weather Type in a module which only uses the module name on Sat, 24 Apr 2021 18:24:02 GMT]]></title><description><![CDATA[<p dir="auto">Here is my config of <a href="https://github.com/barnabycolby/MMM-Carousel#readme" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-Carousel</a>:</p>
<pre><code>{ 
 module: "MMM-Carousel",
 config: { 
          transitionInterval: 10000, 
          ignoreModules: ['alert', 'updatenotification', 'MMM-NewsFeedTicker'],
          mode: 'slides',
          slides: [
                   ['clock', 'calendar'],
                   ['clock', 'calendar', 'MMM-NetworkScanner'],
                   ['currentweather', 'weatherforecast', 'MMM-NetworkScanner'],
                   ['currentweather', 'weatherforecast', 'compliments'],
                   ['clock', 'calendar', 'compliments'],
                   ['clock', 'calendar', 'MMM-MoonPhase'],
                   ['currentweather', 'weatherforecast', 'MMM-MoonPhase'],
                   ['currentweather', 'weatherforecast']
         ]
 }
},
</code></pre>
<p dir="auto">Can someone think of a way to use the new <a href="https://docs.magicmirror.builders/modules/weather.html" target="_blank" rel="noopener noreferrer nofollow ugc">weather module</a> in situation?</p>
]]></description><link>https://forum.magicmirror.builders/post/91018</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91018</guid><dc:creator><![CDATA[OldSunGuy]]></dc:creator><pubDate>Sat, 24 Apr 2021 18:24:02 GMT</pubDate></item></channel></rss>