<?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[weather module just shows loading?]]></title><description><![CDATA[<p dir="auto">I just noticed that the ‘currentweather’ module I’ve set up a long time ago, is now deprecated, and I should use weather instead.<br />
So I tried setting it up, but it just shows ‘loading’.<br />
The config I’ve built looks like this:</p>
<pre><code>{
  module: 'weather',
  position: 'top_right',
  classes: 'day_schedule',
  config: {
    weatherProvider: 'openweathermap',
    type: "current",
    units: 'metric',
    timeFormat: '24',
    decimalSymbol: ',',
    initialLoadDelay: '0',
    onlyTemp: 'true',
    location: 'Greve',
    locationID: '2621215',
    appid: 'xxx'
  }
},
</code></pre>
<p dir="auto">I then tried stripping it to the example:</p>
<pre><code>{
  module: "weather",
  position: "top_right",
  config: {
    // See 'Configuration options' for more information.
    type: 'current'
  }
},
</code></pre>
<p dir="auto">Still just shows loading…</p>
]]></description><link>https://forum.magicmirror.builders/topic/14877/weather-module-just-shows-loading</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 05:32:26 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/14877.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 04 Apr 2021 08:42:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to weather module just shows loading? on Sat, 24 Apr 2021 10:27:22 GMT]]></title><description><![CDATA[<p dir="auto">Ok, I found out what was wrong, despite the confusion with the ’ or " use.<br />
It’s the appid, it’s called apiKey in the weather module.<br />
So after changing that (and also changing all ’ to " in the config), removing quotes around numbers, only have the locationID instead of both location and locationID and other cleanup stuff, it is shows properly :-)</p>
<p dir="auto">So I replaced both my currentweather and YrThen modules with two weather modules:</p>
<pre><code>{
      module: "weather",
      position: "top_right",
      classes: "day_schedule",
      config: {
        weatherProvider: "openweathermap",
        type: "current",
        units: "metric",
        timeFormat: 24,
        decimalSymbol: ",",
        initialLoadDelay: 0,
        onlyTemp: false,
        locationID: 2621215,
        apiKey: "xxx"
      }
    },
    {
      module: "weather",
      position: "top_right",
      classes: "day_schedule",
      config: {
        weatherProvider: "openweathermap",
        type: "forecast",
        units: "metric",
        timeFormat: 24,
        decimalSymbol: ",",
        initialLoadDelay: 0,
        onlyTemp: true,
		maxNumberOfDays: 7,
		colored: true,
		appendLocationNameToHeader: false,
        locationID: 2621215,
        apiKey: "xxx"
      }
    },
</code></pre>
<p dir="auto">Looks very nice indeed<br />
<img src="/assets/uploads/files/1619260038283-72f6ceb8-742c-4a07-8b3f-61bb47375ee4-image.png" alt="72f6ceb8-742c-4a07-8b3f-61bb47375ee4-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/91010</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91010</guid><dc:creator><![CDATA[fribse]]></dc:creator><pubDate>Sat, 24 Apr 2021 10:27:22 GMT</pubDate></item><item><title><![CDATA[Reply to weather module just shows loading? on Tue, 06 Apr 2021 15:24:56 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>
<p dir="auto">Thanks,  I always thought I needed double quotes.</p>
]]></description><link>https://forum.magicmirror.builders/post/90342</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/90342</guid><dc:creator><![CDATA[scumbelly]]></dc:creator><pubDate>Tue, 06 Apr 2021 15:24:56 GMT</pubDate></item><item><title><![CDATA[Reply to weather module just shows loading? on Tue, 06 Apr 2021 14:59:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/scumbelly" aria-label="Profile: scumbelly">@<bdi>scumbelly</bdi></a> right…</p>
<p dir="auto">general config.js rules</p>
<p dir="auto">thing to the left of colon (:) does not need quotes</p>
<p dir="auto">if the thing to the right of colon is a number  or true/false,<br />
should NOT have quotes,<br />
otherwise the thing to the right needs quotes.<br />
single or double doesn’t matter, as long as both ends are the same</p>
]]></description><link>https://forum.magicmirror.builders/post/90341</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/90341</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 06 Apr 2021 14:59:11 GMT</pubDate></item><item><title><![CDATA[Reply to weather module just shows loading? on Tue, 06 Apr 2021 14:51:51 GMT]]></title><description><![CDATA[<p dir="auto">O.K.</p>
<p dir="auto">and…    onlyTemp: ‘true’,  would not have any quotes.</p>
]]></description><link>https://forum.magicmirror.builders/post/90340</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/90340</guid><dc:creator><![CDATA[scumbelly]]></dc:creator><pubDate>Tue, 06 Apr 2021 14:51:51 GMT</pubDate></item><item><title><![CDATA[Reply to weather module just shows loading? on Tue, 06 Apr 2021 12:02:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/scumbelly" aria-label="Profile: scumbelly">@<bdi>scumbelly</bdi></a> single or double doesn’t matter as long as they are the same</p>
<p dir="auto">please use code markers around config info.<br />
there is a third kinds of quote mark  used by the forum without code blocks. they are word processing type, they are curved, both single and double. they are bad.</p>
<p dir="auto">" and ’<br />
notice the difference</p>
<pre><code>" and '
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/90334</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/90334</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 06 Apr 2021 12:02:37 GMT</pubDate></item><item><title><![CDATA[Reply to weather module just shows loading? on Tue, 06 Apr 2021 11:58:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fribse" aria-label="Profile: fribse">@<bdi>fribse</bdi></a></p>
<p dir="auto">Are your single quotes ’ just an accident in your examples?</p>
<pre><code>{
			module: "currentweather",
			position: "top_right",
			header: "my header",
			config: {
				location: "my village",
//				locationID: "numbers",  //ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city
				appid: "wholelottanumbers",
				appendLocationNameToHeader: false,
				degreeLabel: true,
				useBeaufort: false,
				useKMPHwind: true,
				showHumidity: true
			}
		},
</code></pre>
<p dir="auto">Hope this helps.</p>
]]></description><link>https://forum.magicmirror.builders/post/90331</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/90331</guid><dc:creator><![CDATA[scumbelly]]></dc:creator><pubDate>Tue, 06 Apr 2021 11:58:47 GMT</pubDate></item></channel></rss>