<?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-OpenWeatherForecast]]></title><description><![CDATA[<p dir="auto">Does anyone know what’s going on with MMM-OpenWeatherForecast<br />
all I’m getting is its loading<br />
even on my virtual mirror it’s doing exactly the same thing<br />
I tried different coordinates and it is doing the seem thing<br />
I went to the website and everything checks out just fine my app key is still intact and I can see the current weather on their weather map<br />
so I am at a loss on what’s going on here</p>
<pre><code>{
			disabled: false,
			module: "MMM-OpenWeatherForecast",
			position: "top_right",
			header: "Concord/Walnut Creek",
			config: {
				apikey: " ",     // only string here
				latitude: 37.9780 ,                             // Concord's coordinates
				longitude: -122.0311 ,
			    units: "imperial",
			    iconset: "3c",
			    requestDelay: 250,                              // requestDelay In milliseconds
			    useAnimatedIcons: true,                         // animation can only be on one
                updateInterval: 10,                             // minutes
                showFeelsLikeTemp: false,
                showSummary: true,                              // false stop weather alerts from displaying
       		        
		        forecastHeaderText: "Hourly Forecast",          // Text for the header
				forecastLayout: "tiled",                        // Can be set to tiled or table
				
				showHourlyForecast: true,                       // show hourly forecast information
				hourlyForecastInterval: 3,                      // How many hours apart each listed hourly
				maxHourliesToShow: 3,                           // How many hourly forecasts
				 
		        showDailyForecast: false                        // show daily forecast information
			}
		},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/19018/mmm-openweatherforecast</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Jul 2026 07:50:43 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/19018.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 30 Sep 2024 18:18:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Sun, 06 Oct 2024 20:30:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/johngalt" aria-label="Profile: JohnGalt">@<bdi>JohnGalt</bdi></a></p>
<p dir="auto">The api call daily threshold for billing is 1,000.  The default setting is to update every 10 minutes and that equals to 144 daily calls.</p>
<p dir="auto">Butch</p>
]]></description><link>https://forum.magicmirror.builders/post/120409</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120409</guid><dc:creator><![CDATA[butchkemper]]></dc:creator><pubDate>Sun, 06 Oct 2024 20:30:55 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Tue, 05 Nov 2024 19:49:07 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 />
Thanks, now it looks a bit like OpenWeather again ;-)</p>
<p dir="auto"><img src="/assets/uploads/files/1730836102082-031df386-11b1-4d60-aba2-f19d2f9d183a-image.png" alt="031df386-11b1-4d60-aba2-f19d2f9d183a-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/121054</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/121054</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Tue, 05 Nov 2024 19:49:07 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Tue, 05 Nov 2024 01:07:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/htilburgs" aria-label="Profile: htilburgs">@<bdi>htilburgs</bdi></a> use pirateweather provider, on the default weather</p>
]]></description><link>https://forum.magicmirror.builders/post/121030</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/121030</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 05 Nov 2024 01:07:36 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Mon, 04 Nov 2024 23:15:14 GMT]]></title><description><![CDATA[<p dir="auto">What if you don’t have a creditcard like me??</p>
]]></description><link>https://forum.magicmirror.builders/post/121029</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/121029</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Mon, 04 Nov 2024 23:15:14 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Mon, 04 Nov 2024 19:52:49 GMT]]></title><description><![CDATA[<p dir="auto">I had the same problem with my weather forecast.  I made a subscription for an API 3.0 key and modified the config in this way:</p>
<pre><code>{
		module: "MMM-OpenWeatherForecast",
		position: "top_right",
		header: "Wetter in Mülheim",
		config: {
        apiBaseURL: "https://api.openweathermap.org/data/3.0/onecall?",
        apikey: "xxxxxxxxxxxxxxxxxxxxxxxx", //only string here
      latitude: 51.xxxxxxxx,            //number works here
      longitude: 6.9xxxxxxxx,          //so does a string
      updateInterval: 45,
	iconset: "3c",
	maxDailiesToShow: 4,
	maxHourliesToShow: 4,
	label_hourlyTimeFormat: "k[ Uhr]",
	label_sunriseTimeFormat: "k:mm",  // change the format for this one 
	label_days: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]
</code></pre>
<p dir="auto">In addition I added  “<a href="https://api.openweathermap.org/data/3.0/onecall?" target="_blank" rel="noopener noreferrer nofollow ugc">https://api.openweathermap.org/data/3.0/onecall?</a>” as mentioned by <a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: Ray">@<bdi>Ray</bdi></a> in the node_helper.js in the weather module.  The update intervall is 45 minutes - which  means below 1000 calls per month<br />
The module is running again!!!</p>
<p dir="auto">Thx to this community and forum,<br />
Chris</p>
]]></description><link>https://forum.magicmirror.builders/post/121018</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/121018</guid><dc:creator><![CDATA[chris1971]]></dc:creator><pubDate>Mon, 04 Nov 2024 19:52:49 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Sun, 13 Oct 2024 16:02:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/oldguyberlin" aria-label="Profile: OldGuyBerlin">@<bdi>OldGuyBerlin</bdi></a> Worked for me, thanks.</p>
]]></description><link>https://forum.magicmirror.builders/post/120570</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120570</guid><dc:creator><![CDATA[hrjmsh]]></dc:creator><pubDate>Sun, 13 Oct 2024 16:02:14 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Sun, 06 Oct 2024 20:30:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/johngalt" aria-label="Profile: JohnGalt">@<bdi>JohnGalt</bdi></a></p>
<p dir="auto">The api call daily threshold for billing is 1,000.  The default setting is to update every 10 minutes and that equals to 144 daily calls.</p>
<p dir="auto">Butch</p>
]]></description><link>https://forum.magicmirror.builders/post/120409</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120409</guid><dc:creator><![CDATA[butchkemper]]></dc:creator><pubDate>Sun, 06 Oct 2024 20:30:55 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Sun, 06 Oct 2024 16:37:27 GMT]]></title><description><![CDATA[<p dir="auto">Just to make clear.<br />
The <code>requestDelay</code> is only used for the time between the start of the mirror and the first fetch of the data.<br />
For all following the <code>updateInterval</code> in seconds is used.</p>
<p dir="auto">The module sends is weather info, too. But I think both modules are not capable of use the info provided by notification at the moment</p>
]]></description><link>https://forum.magicmirror.builders/post/120401</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120401</guid><dc:creator><![CDATA[wishmaster270]]></dc:creator><pubDate>Sun, 06 Oct 2024 16:37:27 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Sun, 06 Oct 2024 16:26:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/johngalt" aria-label="Profile: JohnGalt">@<bdi>JohnGalt</bdi></a> the default weather broadcasts it’s data just like calendar does</p>
<p dir="auto">So the othermodules could use it</p>
<p dir="auto"><img src="/assets/uploads/files/1728231965134-img_0375.png" alt="IMG_0375.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/120400</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120400</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 06 Oct 2024 16:26:10 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Sun, 06 Oct 2024 16:21:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: Ray">@<bdi>Ray</bdi></a> – Just for the sake of completeness for you or others I will mention here that the provider will count ALL calls, from ALL modules.</p>
<p dir="auto">As an example I can have this module running for a comprehensive look at my local weather, plus an instance of the default weather module telling me what’s happening with a friend or relatives, plus I’m running MMM-DynamicWeather.</p>
<p dir="auto">The API will count all the calls from all sources. It would be great if the MM system could pull the data and broadcast it to modules as needed, but that’s not how it works.</p>
]]></description><link>https://forum.magicmirror.builders/post/120399</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120399</guid><dc:creator><![CDATA[JohnGalt]]></dc:creator><pubDate>Sun, 06 Oct 2024 16:21:33 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Sun, 06 Oct 2024 14:36:49 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 />
I just thought I’d throw it out there in case someone else runs into the same problem</p>
]]></description><link>https://forum.magicmirror.builders/post/120395</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120395</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Sun, 06 Oct 2024 14:36:49 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Sun, 06 Oct 2024 14:33:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: Ray">@<bdi>Ray</bdi></a> yes, a call is a call. 250 is WAY TOO OFTEN for weather that doesn’t changed but every 10-15 minutes</p>
]]></description><link>https://forum.magicmirror.builders/post/120394</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120394</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 06 Oct 2024 14:33:34 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Sun, 06 Oct 2024 13:53:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a><br />
so I found out what was going on with the calls being counted when my magic mirror wasn’t even up and running</p>
<p dir="auto">so here’s what I found out<br />
I have MMM-OpenWeatherForecast checking the temperature in two time zones<br />
and one of the time zone I have set requestDelay: 250<br />
this was done before the upgrade to 3.0 call abb<br />
since then I have deleted one of the time zones<br />
but forgot to delete requestDelay: 250 an error in my part</p>
<p dir="auto">it turns out that the One Call API 3.0 was counting all the calls in that 250<br />
in version 2.5 we didn’t have to worry about that</p>
]]></description><link>https://forum.magicmirror.builders/post/120391</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120391</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Sun, 06 Oct 2024 13:53:27 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 19:20:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a><br />
I totally agree with everything you said I do have two keys but I only use one<br />
the only thing I can think of is maybe the 20 calls are a carryover from the previous day that’s the only thing I can think of<br />
I shut down my mirror around 7 o’clock at night</p>
<p dir="auto">and when I started up in the morning around 8 o’clock in the morning I would think there would only be one call<br />
but when I looked it said there were 20<br />
so like I said maybe it’s a carryover from the previous day</p>
<p dir="auto">so tomorrow morning I’m going to conduct a test<br />
I will check the website first to see if there any calls there before I start my mirror</p>
<p dir="auto">if you want I will let you know</p>
]]></description><link>https://forum.magicmirror.builders/post/120348</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120348</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Fri, 04 Oct 2024 19:20:48 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 19:05:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: Ray">@<bdi>Ray</bdi></a><br />
Hi, I do not know your set up nor do I know when the “in one day” changes to the next day at OpenWeaterMap.<br />
I use the API Key exactly in this module and only have one instance of the mirror running…<br />
I just checked my statistics at OpenWeaterMap and I do have at about 112 calls a day. Which is correct as my mirror is shutdown between 11:30pm and 5am.</p>
<p dir="auto">Maybe it is a matter of your timezone and calls of the last day are counted in the current one.</p>
<p dir="auto">What does your statistic look like</p>
<p dir="auto"><a href="https://home.openweathermap.org/statistics/onecall_30" target="_blank" rel="noopener noreferrer nofollow ugc">https://home.openweathermap.org/statistics/onecall_30</a></p>
<p dir="auto">Edit:<br />
And one small side note. Even if you use different keys the calls a summarized per account</p>
]]></description><link>https://forum.magicmirror.builders/post/120347</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120347</guid><dc:creator><![CDATA[wishmaster270]]></dc:creator><pubDate>Fri, 04 Oct 2024 19:05:52 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 17:09:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/marclandis" aria-label="Profile: MarcLandis">@<bdi>MarcLandis</bdi></a> yes I get that and I totally understand that</p>
<p dir="auto">but that’s not my question maybe it can’t be answered<br />
my magic mirror is on a  computer when I boot the computer up in the morning it will automatically start magic mirror usually the first thing it checks is the weather<br />
if I turn the computer off there should be no more calls to the weather app</p>
<p dir="auto">so my original question would be if I turn my computer on first thing in the morning and I go to the weather app why does it say I already have 20 calls that’s my real question</p>
]]></description><link>https://forum.magicmirror.builders/post/120342</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120342</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Fri, 04 Oct 2024 17:09:50 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 16:59:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: Ray">@<bdi>Ray</bdi></a> updates are still done even the screen is off.</p>
]]></description><link>https://forum.magicmirror.builders/post/120341</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120341</guid><dc:creator><![CDATA[MarcLandis]]></dc:creator><pubDate>Fri, 04 Oct 2024 16:59:31 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 16:53:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/marclandis" aria-label="Profile: MarcLandis">@<bdi>MarcLandis</bdi></a> sorry for the misunderstanding there<br />
when I activate my mirror and it checks the weather</p>
]]></description><link>https://forum.magicmirror.builders/post/120340</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120340</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Fri, 04 Oct 2024 16:53:29 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 16:51:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: Ray">@<bdi>Ray</bdi></a> said in <a href="/post/120337">MMM-OpenWeatherForecast</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a> yes I have mine set for 15<br />
but that doesn’t explain why when I turn it on for the first time in the morning they already have 20 calls I don’t get that</p>
</blockquote>
<p dir="auto">What means “turn it on”? Boot up the Pi or turn on the screen?</p>
]]></description><link>https://forum.magicmirror.builders/post/120339</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120339</guid><dc:creator><![CDATA[MarcLandis]]></dc:creator><pubDate>Fri, 04 Oct 2024 16:51:19 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 16:46:15 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> I have it set for 15 minutes</p>
]]></description><link>https://forum.magicmirror.builders/post/120338</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120338</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Fri, 04 Oct 2024 16:46:15 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 16:35:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a> yes I have mine set for 15<br />
but that doesn’t explain why when I turn it on for the first time in the morning they already have 20 calls I don’t get that</p>
]]></description><link>https://forum.magicmirror.builders/post/120337</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120337</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Fri, 04 Oct 2024 16:35:57 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 12:42:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a> thanks. i knew i could go look, asking poster to do the same.</p>
]]></description><link>https://forum.magicmirror.builders/post/120334</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120334</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 04 Oct 2024 12:42:27 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 13:07:06 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> In default the module calls the Api every 10 minutes.</p>
]]></description><link>https://forum.magicmirror.builders/post/120333</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120333</guid><dc:creator><![CDATA[wishmaster270]]></dc:creator><pubDate>Fri, 04 Oct 2024 13:07:06 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 11:15:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: Ray">@<bdi>Ray</bdi></a> how often is the module fetching the weather ?</p>
]]></description><link>https://forum.magicmirror.builders/post/120330</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120330</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 04 Oct 2024 11:15:03 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherForecast on Fri, 04 Oct 2024 10:57:44 GMT]]></title><description><![CDATA[<p dir="auto">So after getting everything set up with the new version 3.0 at <a href="http://openweathermap.org" target="_blank" rel="noopener noreferrer nofollow ugc">openweathermap.org</a><br />
I turned on my mirror for the first time this morning and it displayed the weather<br />
and so I went to <a href="http://openweathermap.org" target="_blank" rel="noopener noreferrer nofollow ugc">openweathermap.org</a> just to check how many calls I made it already had me down for 20 calls<br />
am I missing something here</p>
]]></description><link>https://forum.magicmirror.builders/post/120328</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/120328</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Fri, 04 Oct 2024 10:57:44 GMT</pubDate></item></channel></rss>