<?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[Current weather module]]></title><description><![CDATA[<p dir="auto">Hey fellas. I’ve had great help from here before, so I thought I’d give it another try.</p>
<p dir="auto">My current weather module doesn’t show up, only the forecast.<br />
I dont get any errors on start up in the terminal.</p>
<p dir="auto">Config file is this:</p>
<p dir="auto">:::</p>
<pre><code>		{
			module: "currentweather",
			position: "top_right",
			config: {
				location: "Aalborg",
				locationID: "2624886 ",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
				appid: "1ceedb121f90696807bb8acfc93ede28"
			}
		},
		{
			module: "weatherforecast",
			position: "top_right",
			header: "Weather Forecast",
			config: {
				location: "Aalborg",
				locationID: "2624886",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
				appid: "a59083d2a1c9da6e99d2395fb61d8979",
				fade: false
			}
		},
</code></pre>
<p dir="auto">:::</p>
<p dir="auto">Here is my CSS file</p>
<p dir="auto">:::</p>
<pre><code>html {
  cursor: none;
  overflow: hidden;
  background: #000;
}

::-webkit-scrollbar {
  display: none;
}

body {
  margin: 60px;
  position: absolute;
  height: calc(100% - 120px);
  width: calc(100% - 120px);
  background: #000;
  color: #aaa;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 2em;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
}

/**
 * Default styles.
 */

.dimmed {
  color: #fff;
}

.normal {
  color: #fff;
}

.bright {
  color: #fff;
}

.xsmall {
  font-size: 20px;
  line-height: 25px;
}

.small {
  font-size: 25px;
  line-height: 30px;
}

.medium {
  font-size: 35px;
  line-height: 40px;
}

.large {
  font-size: 65px;
  line-height: 65px;
}

.xlarge {
  font-size: 75px;
  line-height: 75px;
  letter-spacing: -3px;
}

.thin {
  font-family: Roboto, sans-serif;
  font-weight: 100;
}

.light {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
}

.regular {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
}

.bold {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

header {
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #666;
  line-height: 15px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #fff;
}

sup {
  font-size: 50%;
  line-height: 50%;
}

/**
 * Module styles.
 */

.module {
  margin-bottom: 30px;
}

.region.bottom .module {
  margin-top: 30px;
  margin-bottom: 0;
}

.no-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pre-line {
  white-space: pre-line;
}

/**
 * Region Definitions.
 */

.region {
  position: absolute;
}

.region.fullscreen {
  position: absolute;
  top: -60px;
  left: -60px;
  right: -60px;
  bottom: -60px;
  pointer-events: none;
}

.region.fullscreen * {
  pointer-events: auto;
}

.region.right {
  right: 0;
  text-align: right;
}

.region.top {
  top: 0;
}

.region.top .container {
  margin-bottom: 25px;
}

.region.bottom .container {
  margin-top: 25px;
}

.region.top .container:empty {
  margin-bottom: 0;
}

.region.top.center,
.region.bottom.center {
  left: 50%;
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.region.top.right,
.region.top.left,
.region.top.center {
  top: 100%;
}

.region.bottom {
  bottom: 0;
}

.region.bottom .container:empty {
  margin-top: 0;
}

.region.bottom.right,
.region.bottom.center,
.region.bottom.left {
  bottom: 100%;
}

.region.bar {
  width: 100%;
  text-align: center;
}

.region.third,
.region.middle.center {
  width: 100%;
  text-align: center;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.region.upper.third {
  top: 33%;
}

.region.middle.center {
  top: 50%;
}

.region.lower.third {
  top: 66%;
}

.region.left {
  text-align: left;
}

.region table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
}

</code></pre>
<p dir="auto">:::</p>
<p dir="auto">How my MM looks currently. Current weather missing for some reason.</p>
<p dir="auto">:::</p>
<p dir="auto"><img src="https://i.imgur.com/00vkT4w.png" alt="Link" class=" img-fluid img-markdown" /></p>
<p dir="auto">:::</p>
]]></description><link>https://forum.magicmirror.builders/topic/11478/current-weather-module</link><generator>RSS for Node</generator><lastBuildDate>Sat, 09 May 2026 14:16:50 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/11478.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 29 Oct 2019 16:38:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Current weather module on Tue, 29 Oct 2019 17:09:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/doogain" aria-label="Profile: Doogain">@<bdi>Doogain</bdi></a> looking back over your config, the locationID has a trailing space<br />
"2624886 "</p>
]]></description><link>https://forum.magicmirror.builders/post/63506</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/63506</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 29 Oct 2019 17:09:55 GMT</pubDate></item><item><title><![CDATA[Reply to Current weather module on Tue, 29 Oct 2019 18:05:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/doogain" aria-label="Profile: Doogain">@<bdi>Doogain</bdi></a> computers are really really FAST , at following EXACT orders… no deviation…</p>
]]></description><link>https://forum.magicmirror.builders/post/63512</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/63512</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 29 Oct 2019 18:05:05 GMT</pubDate></item><item><title><![CDATA[Reply to Current weather module on Tue, 29 Oct 2019 17:56:33 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/63506">Current weather module</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/doogain" aria-label="Profile: Doogain">@<bdi>Doogain</bdi></a> looking back over your config, the locationID has a trailing space<br />
"2624886 "</p>
</blockquote>
<p dir="auto">Wow, I had no idea that was there. I gotta get used to the idea that even just a space or a missing , can ruin the whole thing.</p>
<p dir="auto">Worked like a charm, thanks man!</p>
]]></description><link>https://forum.magicmirror.builders/post/63510</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/63510</guid><dc:creator><![CDATA[Doogain]]></dc:creator><pubDate>Tue, 29 Oct 2019 17:56:33 GMT</pubDate></item><item><title><![CDATA[Reply to Current weather module on Tue, 29 Oct 2019 17:09:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/doogain" aria-label="Profile: Doogain">@<bdi>Doogain</bdi></a> looking back over your config, the locationID has a trailing space<br />
"2624886 "</p>
]]></description><link>https://forum.magicmirror.builders/post/63506</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/63506</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 29 Oct 2019 17:09:55 GMT</pubDate></item><item><title><![CDATA[Reply to Current weather module on Tue, 29 Oct 2019 17:05:23 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/63504">Current weather module</a>:</p>
<blockquote>
<p dir="auto">if you open the developers window, ctrl-shift-i, select the console tab, add ‘current’ (no quotes) to the filter box</p>
<p dir="auto">see any messages from the current weather module?</p>
</blockquote>
<p dir="auto">Yes, I see an error on the currentweather module.</p>
<p dir="auto"><img src="https://i.imgur.com/iYVh7NR.png" alt="alt text" class=" img-fluid img-markdown" /></p>
<p dir="auto">I’m unsure on how to correct this error.</p>
]]></description><link>https://forum.magicmirror.builders/post/63505</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/63505</guid><dc:creator><![CDATA[Doogain]]></dc:creator><pubDate>Tue, 29 Oct 2019 17:05:23 GMT</pubDate></item><item><title><![CDATA[Reply to Current weather module on Tue, 29 Oct 2019 16:49:45 GMT]]></title><description><![CDATA[<p dir="auto">if you open the developers window, ctrl-shift-i, select the console tab, add ‘current’ (no quotes) to the filter box</p>
<p dir="auto">see any messages from the current weather module?</p>
]]></description><link>https://forum.magicmirror.builders/post/63504</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/63504</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 29 Oct 2019 16:49:45 GMT</pubDate></item></channel></rss>