<?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-OpenWeatherMapForecast 3.0 API calls and freeze issue]]></title><description><![CDATA[<p dir="auto">I have been using MMM-OpenWeatherMapForecast for a few months without issue.  I have showDailyForecast in one section with maxHourliesToShow set to 24. I also have 4 different daily update sections, including the same location as the showDailyForecast updates. So 5 calls/sections total. The daily updates pull every 12 hours and the hourly pulls every hour.<br />
I upgraded my MMM-OpenWeatherMapForecast configs to 3.0 onecall a couple weeks ago.  I also recently updated that module, the magicmirror base, and the Raspberry Pi software around the same time.  I’m having a hard time pinning down the root cause.  I’ve since renamed my MagicMirror folder and redownloaded in case I made a mistake somewhere else.</p>
<p dir="auto">I recently found that my hourly weather was not updating. Looking at it further, it appears to have gone stale around July 2nd, I found this on the 5th or 6th.  When I logged into my Raspberry Pi 4, I took the regular OS updates that were waiting, rebooted, and restarted the Magic Mirror software and configured modules.  I assumed something was hung and needed a reboot I then noticed an unusually high number of calls going to onecall_30. My normal amount is 60-70 calls per day but I was close to 1,000 by late afternoon.</p>
<p dir="auto">A lot of troubleshooting later I’ve found that having the hourly and daily calls running at the same time causes the system to slowly freeze up. Having more than one call/section enabled causes an unusually high number of calls to go out. Having just the showDailyForecast section enabled runs fine and registers one call in the openweathermap usage logs per attempt. Having this hourly plus one of the daily calls running results in 8 calls per attempt.  Having three sections enabled results in 27 calls, 4 sections enabled results in 64 calls, and having all five sections running results in 100-152 calls. These counts are recorded at startup; I don’t have the data on refresh rates.</p>
<p dir="auto">When I have more than one instance of the weather call in my config, I get an unusual number of calls being recorded at <a href="https://home.openweathermap.org/statistics/onecall_30" target="_blank" rel="noopener noreferrer nofollow ugc">https://home.openweathermap.org/statistics/onecall_30</a>. If I have the hourly instance and any daily instance enabled at the same time, it seems like each new API call bogs the system down more. It’s evident in the clock. I start seeing time update every 2 seconds, then every 3-4, then more. Eventually my calendar wouldn’t display, flashing briefly for a moment before going away again - maybe it was trying to refresh and not getting through? Having more daily instances enabled along with the hourly causes it degrade faster. Eventually it just stops updating and appears frozen. When it gets to this point, the openweathermap statistics stops bumping like the calls are never going out.</p>
<pre><code>config.js

modules: [
		{
			module: "alert",
		},
		{
			module: "updatenotification",
			position: "top_bar"
		},
		{
			module: "clock",
			position: "top_left",
			timeFormat: 12
		},
		{
			module: "calendar",
			header: "Calendar",
			position: "top_left",
			config: {
				fetchInterval: 3600000 * 12, // 12 hours
				customEvents: [{keyword: 'Birthday', symbol: 'birthday-cake', color: 'Gold'}, {keyword: 'Anniversary', symbol: 'fas fa-solid fa-face-kiss-wink-heart', color: 'Red'}], 
				coloredText: true,
				coloredSymbol: true,
				calendars: [
					{
						symbol: "calendar-check",
						url: "https://calendar.google.com/calendar/ical/myhashnumber%40group.calendar.google.com/private-mycalendarnumber/basic.ics"
					},
					{
						symbol: "calendar-check",
						url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics"
					}
				]
			}
		},

		{
			module: "MMM-OpenWeatherMapForecast",
			header: "Kent, WA",
			position: "top_left",
			config: {
				apikey: "myapikey",
				latitude: "47.394788",
				longitude: "-122.214061",      
				updateInterval: 15,  // 720 = 12 hrs
				requestDelay: 500,  // ms
				units: "imperial",
				showCurrentConditions: false,
				showSummary: false,
				showForecastTableColumnHeaderIcons: false,
				showHourlyForecast: false,
				maxDailiesToShow: 5,
				concise: false,
				iconset: "4c", 
				forecastLayout: "table"
				
			}
		},
		
		{
			module: "MMM-OpenWeatherMapForecast",
			header: "Dade City, FL",
			position: "top_left",
			config: {
				apikey: "myapikey",
				latitude: "28.32506",
				longitude: "-82.30354",      
				updateInterval: 30,  // 12 hrs
				requestDelay: 4500,  // ms
				colored: false,
				units: "imperial",
				showCurrentConditions: false,
				showSummary: false,
				showForecastTableColumnHeaderIcons: false,
				showHourlyForecast: false,
				maxDailiesToShow: 5,
				forecastLayout: "table"
			}
		},
		  
		{
			module: "MMM-OpenWeatherMapForecast",
			header: "Lawndale, CA",
			position: "top_left",
			config: {
				apikey: "myapikey",
				latitude: "33.90011",
				longitude: "-118.35854",      
				updateInterval: 60,  // 720 = 12 hrs
				requestDelay: 3500,  // ms
				colored: false,
				units: "imperial",
				showCurrentConditions: false,
				showSummary: false,
				showForecastTableColumnHeaderIcons: false,
				showHourlyForecast: false,
				maxDailiesToShow: 5,
				forecastLayout: "table"
			}
		},
		
		{
			module: "MMM-OpenWeatherMapForecast",
			header: "Toulouse",
			position: "top_left",
			config: {
				apikey: "myapikey",
				latitude: "43.6033738",
				longitude: "1.4307561",
				updateInterval: 60,  // 12 hrs
				requestDelay: 1500,  // ms
				colored: false,
				units: "imperial",
				showCurrentConditions: false,
				showSummary: false,
				showForecastTableColumnHeaderIcons: false,
				showHourlyForecast: false,
				maxDailiesToShow: 5,
				forecastLayout: "table"
			}
		},
		
		{
			disabled: false,
			module: "MMM-SunRiseSet",
			position: "top_right",
			config: {
				lat: "47.394788",   
				lng: "-122.214061",    
				imageOnly: "no",      
				timeFormat: "h:mm a", 
				maxWidth: "515px"
			}
		},
		
		{
			module: "MMM-OpenWeatherMapForecast",
			header: "Today's Hourly Weather",
			position: "top_right",
			config: {
				apikey: "myapikey",
				latitude: "47.394788",
				longitude: "-122.214061",      
				updateInterval: 15,  // minutes
				requestDelay: 2500,  // ms
				units: "imperial",
				hourlyForecastInterval: 1,
				maxHourliesToShow: 24,
				showDailyForecast: true,
				maxDailiesToShow: 5,
				concise: false,
				iconset: "4c",
				forecastLayout: "table"
			}
		},

	]

</code></pre>
<p dir="auto">Raspberry Pi 4 top results while system appears locked up. I am ssh’ing from another computer’s terminal.<br />
<img src="/assets/uploads/files/1720506051580-pi-top.png" alt="Pi top.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/topic/18869/mmm-openweathermapforecast-3-0-api-calls-and-freeze-issue</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Jul 2026 00:58:34 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/18869.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 09 Jul 2024 06:21:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 13 Jul 2024 17:27:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jfields" aria-label="Profile: jfields">@<bdi>jfields</bdi></a> good debug on the multiple problem</p>
<p dir="auto">lets try this temp fix</p>
<p dir="auto">in the MM/js folder do</p>
<pre><code class="language-sh">curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror/fixloading/js/app.js &gt;app.js
</code></pre>
<p dir="auto">stop and restart MM</p>
<p dir="auto">this adds a hash to check for loading or already loading the node_helper for this module</p>
]]></description><link>https://forum.magicmirror.builders/post/118838</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118838</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 13 Jul 2024 17:27:38 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 03 Aug 2024 19:35:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jfields" aria-label="Profile: jfields">@<bdi>jfields</bdi></a> very helpful, thanks</p>
]]></description><link>https://forum.magicmirror.builders/post/119088</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119088</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Aug 2024 19:35:38 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 03 Aug 2024 19:32:31 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> and <a class="plugin-mentions-user plugin-mentions-a" href="/user/rags" aria-label="Profile: Rags">@<bdi>Rags</bdi></a></p>
<p dir="auto">You can limit your calls as well. For example, I have mine set to 2,000. I get the 1,000 for free, and allow for another 1,000. This happened once while I was troubleshooting my issue here. I got to just over 1,900 calls total and the charge was $1.35 USD. You can set the max call limit to whatever you want.</p>
<p dir="auto"><img src="/assets/uploads/files/1722713349947-980bbd1d-e740-474b-8471-ca7d74990c3a-image.png" alt="980bbd1d-e740-474b-8471-ca7d74990c3a-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto"><img src="/assets/uploads/files/1722713374446-d122d114-92ea-4212-8228-82f3ac317be9-image.png" alt="d122d114-92ea-4212-8228-82f3ac317be9-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/119087</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119087</guid><dc:creator><![CDATA[jfields]]></dc:creator><pubDate>Sat, 03 Aug 2024 19:32:31 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 03 Aug 2024 16:40:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jfields" aria-label="Profile: jfields">@<bdi>jfields</bdi></a> cool, thanks for the feedback. . I’ll submit a pull request to fix the base</p>
]]></description><link>https://forum.magicmirror.builders/post/119086</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119086</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Aug 2024 16:40:26 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 03 Aug 2024 16:28:05 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 turned two more MMM-OpenWeatherMapForecast sections for a  couple days and left it running. No issues that I could see. Your script seems to have fixed it.  I’ll probably go back to 4 standard weather sections and one MMM-OpenWeatherMapForecast. Thank you for your help though.<br />
Here are the logs.</p>
<p dir="auto"><img src="/assets/uploads/files/1722702359359-d39d1a38-1b43-4005-b081-ad66cb32cddb-image.png" alt="d39d1a38-1b43-4005-b081-ad66cb32cddb-image.png" class=" img-fluid img-markdown" /> 0|mm       | &gt; magicmirror@2.28.0 start<br />
0|mm       |<br />
0|mm       | [2024-08-01 21:20:05.292] [LOG]   Loading config …<br />
0|mm       | [2024-08-01 21:20:05.299] [LOG]   Loading module helpers …<br />
0|mm       | [2024-08-01 21:20:05.301] [LOG]   No helper found for module: alert.<br />
0|mm       | [2024-08-01 21:20:05.310] [LOG]   Initializing new module helper …<br />
0|mm       | [2024-08-01 21:20:05.312] [LOG]   No helper found for module: clock.<br />
0|mm       | [2024-08-01 21:20:05.445] [LOG]   Initializing new module helper …<br />
0|mm       | [2024-08-01 21:20:05.445] [LOG]   Module helper loaded: calendar<br />
0|mm       | [2024-08-01 21:20:05.447] [LOG]   No helper found for module: weather.<br />
0|mm       | [2024-08-01 21:20:05.447] [LOG]   No helper found for module: weather.<br />
0|mm       | [2024-08-01 21:20:05.479] [LOG]   Initializing new module helper …<br />
0|mm       | [2024-08-01 21:20:05.771] [LOG]   Initializing new module helper …<br />
0|mm       | [2024-08-01 21:20:05.772] [LOG]   All module helpers loaded.<br />
0|mm       | [2024-08-01 21:20:05.782] [LOG]   Starting server on port 8080 …<br />
0|mm       | [2024-08-01 21:20:06.923] [LOG]   Server started …<br />
0|mm       | [2024-08-01 21:20:06.929] [LOG]   Connecting socket for: calendar<br />
0|mm       | [2024-08-01 21:20:06.930] [LOG]   Starting node helper for: calendar<br />
0|mm       | [2024-08-01 21:20:06.936] [LOG]   Sockets connected &amp; modules started …<br />
0|mm       | [2024-08-01 21:20:07.302] [LOG]   Launching application.<br />
0|mm       | [2024-08-01 21:20:08.895] [INFO]  System information:<br />
0|mm       | ### SYSTEM:   manufacturer: ; model: ; raspberry: undefined; virtual: false<br />
0|mm       | [2024-08-01 21:20:11.736] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-01 21:20:13.338] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.</p>
<p dir="auto">0|mm       | &gt; magicmirror@2.28.0 start<br />
0|mm       | &gt; DISPLAY=“${DISPLAY:=:0}” ./node_modules/.bin/electron js/electron.js<br />
0|mm       |<br />
0|mm       | [2024-08-01 21:20:05.264] [LOG]   Starting MagicMirror: v2.28.0<br />
0|mm       | [2024-08-01 21:20:05.292] [LOG]   Loading config …<br />
0|mm       | [2024-08-01 21:20:05.295] [LOG]   config template file not exists, no envsubst<br />
0|mm       | [2024-08-01 21:20:05.299] [LOG]   Loading module helpers …<br />
0|mm       | [2024-08-01 21:20:05.301] [LOG]   No helper found for module: alert.<br />
0|mm       | [2024-08-01 21:20:05.310] [LOG]   Initializing new module helper …<br />
0|mm       | [2024-08-01 21:20:05.311] [LOG]   Module helper loaded: updatenotification<br />
0|mm       | [2024-08-01 21:20:05.312] [LOG]   No helper found for module: clock.<br />
0|mm       | [2024-08-01 21:20:05.445] [LOG]   Initializing new module helper …<br />
0|mm       | [2024-08-01 21:20:05.445] [LOG]   Module helper loaded: calendar<br />
0|mm       | [2024-08-01 21:20:05.447] [LOG]   No helper found for module: weather.<br />
0|mm       | [2024-08-01 21:20:05.447] [LOG]   No helper found for module: weather.<br />
0|mm       | [2024-08-01 21:20:05.479] [LOG]   Initializing new module helper …<br />
0|mm       | [2024-08-01 21:20:05.479] [LOG]   Module helper loaded: MMM-OpenWeatherMapForecast<br />
0|mm       | [2024-08-01 21:20:05.771] [LOG]   Initializing new module helper …<br />
0|mm       | [2024-08-01 21:20:05.772] [LOG]   Module helper loaded: MMM-SunRiseSet<br />
0|mm       | [2024-08-01 21:20:05.772] [LOG]   All module helpers loaded.<br />
0|mm       | [2024-08-01 21:20:05.782] [LOG]   Starting server on port 8080 …<br />
0|mm       | [2024-08-01 21:20:06.923] [LOG]   Server started …<br />
0|mm       | [2024-08-01 21:20:06.926] [LOG]   Connecting socket for: updatenotification<br />
0|mm       | [2024-08-01 21:20:06.927] [LOG]   Starting module helper: updatenotification<br />
0|mm       | [2024-08-01 21:20:06.929] [LOG]   Connecting socket for: calendar<br />
0|mm       | [2024-08-01 21:20:06.930] [LOG]   Starting node helper for: calendar<br />
0|mm       | [2024-08-01 21:20:06.930] [LOG]   Connecting socket for: MMM-OpenWeatherMapForecast<br />
0|mm       | [2024-08-01 21:20:06.931] [LOG]   ====================== Starting node_helper for module [MMM-OpenWeatherMapForecast]<br />
0|mm       | [2024-08-01 21:20:06.932] [LOG]   Connecting socket for: MMM-SunRiseSet<br />
0|mm       | [2024-08-01 21:20:06.933] [LOG]   Starting node_helper for: MMM-SunRiseSet<br />
0|mm       | [2024-08-01 21:20:06.936] [LOG]   Sockets connected &amp; modules started …<br />
0|mm       | [2024-08-01 21:20:07.302] [LOG]   Launching application.<br />
0|mm       | [2024-08-01 21:20:08.895] [INFO]  System information:<br />
0|mm       | ### SYSTEM:   manufacturer: ; model: ; raspberry: undefined; virtual: false<br />
0|mm       | ### OS:       platform: linux; distro: Debian GNU/Linux; release: 12; arch: arm64; kernel: 6.6.31+rpt-rpi-v8<br />
0|mm       | ### VERSIONS: electron: 31.1.0; used node: 20.14.0; installed node: 20.15.0; npm: 10.7.0; pm2: 5.4.1<br />
0|mm       | ### OTHER:    timeZone: America/Los_Angeles; ELECTRON_ENABLE_GPU: undefined<br />
0|mm       | [2024-08-01 21:20:10.636] [LOG]   Create new calendarfetcher for url: <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a> - Interval: 7200000<br />
0|mm       | [2024-08-01 21:20:10.779] [LOG]   Create new calendarfetcher for url: <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a> - Interval: 7200000<br />
0|mm       | [2024-08-01 21:20:10.802] [INFO]  updatenotification: Updater Class Loaded!<br />
0|mm       | [2024-08-01 21:20:10.803] [INFO]  updatenotification: Checking PM2 using…<br />
0|mm       | [2024-08-01 21:20:10.981] [INFO]  Checking git for module: MMM-OpenWeatherMapForecast<br />
0|mm       | [2024-08-01 21:20:11.025] [INFO]  Checking git for module: MMM-SunRiseSet<br />
0|mm       | [2024-08-01 21:20:11.046] [INFO]  Checking git for module: MagicMirror<br />
0|mm       | [2024-08-01 21:20:11.104] [INFO]  updatenotification: [PM2] You are not using pm2<br />
0|mm       | [2024-08-01 21:20:11.736] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-01 21:20:13.338] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-01 23:20:12.320] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-01 23:20:15.036] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 01:20:12.733] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 01:20:16.007] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 03:20:13.161] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 03:20:16.894] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 05:20:13.547] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 05:20:17.909] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 07:20:13.922] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 07:20:18.813] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 09:20:14.301] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 09:20:19.727] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 11:20:14.714] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 11:20:20.683] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 13:20:15.100] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 13:20:21.534] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 15:20:15.498] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 15:20:22.471] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 17:20:15.885] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 17:20:23.362] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 19:20:16.281] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 19:20:24.207] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 21:20:16.685] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 21:20:25.164] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-02 23:20:17.133] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-02 23:20:26.039] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-03 01:20:17.538] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-03 01:20:26.948] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-03 03:20:17.938] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-03 03:20:27.814] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-03 05:20:18.339] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-03 05:20:28.745] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.<br />
0|mm       | [2024-08-03 07:20:18.699] [INFO]  Calendar-Fetcher: Broadcasting 5 events from <a href="https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics</a>.<br />
0|mm       | [2024-08-03 07:20:29.567] [INFO]  Calendar-Fetcher: Broadcasting 122 events from <a href="https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/mycalhex%40group.calendar.google.com/private-number/basic.ics</a>.</p>
]]></description><link>https://forum.magicmirror.builders/post/119085</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119085</guid><dc:creator><![CDATA[jfields]]></dc:creator><pubDate>Sat, 03 Aug 2024 16:28:05 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 03 Aug 2024 16:37:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rags" aria-label="Profile: Rags">@<bdi>Rags</bdi></a> you didn’t need to edit the file</p>
<p dir="auto">my erased comments were for the default weather module</p>
<p dir="auto">yes, they give you 1000 api calls per day, no charge, but you must register a card</p>
]]></description><link>https://forum.magicmirror.builders/post/119082</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119082</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Aug 2024 16:37:21 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 03 Aug 2024 14:49:00 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 />
YIKES !<br />
I had changed the helper module  to<br />
“var url = “<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 suggested in an earlier post. I also changed the config.js with weatherEndpoint: “forecast/daily”. It still did not work.<br />
So i am not comfortable to use a credit card for the website. So does it mean curtains for this module as far as “Free” is concerned.?</p>
]]></description><link>https://forum.magicmirror.builders/post/119081</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119081</guid><dc:creator><![CDATA[Rags]]></dc:creator><pubDate>Sat, 03 Aug 2024 14:49:00 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 03 Aug 2024 14:39:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rags" aria-label="Profile: Rags">@<bdi>Rags</bdi></a> open the developers window, curl-shift-I, select the console tab, and put wea in the filter field to see messages just from the weather module</p>
<p dir="auto">You should see some error, maybe 401<br />
They have dropped support for the older 2.5 spikes, you need a 3.0 key which requires a credit card</p>
]]></description><link>https://forum.magicmirror.builders/post/119079</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119079</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Aug 2024 14:39:32 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 03 Aug 2024 14:28:02 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/118957">MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/socrates" aria-label="Profile: Socrates">@<bdi>Socrates</bdi></a><br />
yes openweather  changed their api<br />
module needs update</p>
</blockquote>
<p dir="auto">Greetings fellow MagicMirror fans, I also noticed that the weather is not updating since a few days. I ran a git pull to update the module , it says already  updated, but the module is not displaying the weather. DId i miss doing something . I have a free account and an api key. Need help to resolve this, Thanks.</p>
]]></description><link>https://forum.magicmirror.builders/post/119077</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119077</guid><dc:creator><![CDATA[Rags]]></dc:creator><pubDate>Sat, 03 Aug 2024 14:28:02 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Wed, 24 Jul 2024 10:10:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jfields" aria-label="Profile: jfields">@<bdi>jfields</bdi></a> logs are captured by pm2</p>
<p dir="auto">pm2 logs --lines=xxxx</p>
<p dir="auto">xxxx is the number of lines to show</p>
<p dir="auto">the curl loads a version of the MagicMirror file that now only loads the node helper once per module.</p>
<p dir="auto">nothing else is changed</p>
]]></description><link>https://forum.magicmirror.builders/post/118961</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118961</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 24 Jul 2024 10:10:24 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Wed, 24 Jul 2024 03:37:51 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> Hello, been away for a bit. I ran the curl and added a couple of the OpenWeatherMapForecast calls back in. They’re showing nominally, time is updating regularly. No issues right now. I opened the browser developer window and it’s showing 3 errors and the count is not incrementing.  Does this fixloading script stop errant calls? I’m not sure where to look for the logs. I’m using pm2 to start/stop/restart.</p>
]]></description><link>https://forum.magicmirror.builders/post/118960</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118960</guid><dc:creator><![CDATA[jfields]]></dc:creator><pubDate>Wed, 24 Jul 2024 03:37:51 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Tue, 23 Jul 2024 21:43:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/socrates" aria-label="Profile: Socrates">@<bdi>Socrates</bdi></a><br />
yes openweather  changed their api<br />
module needs update</p>
]]></description><link>https://forum.magicmirror.builders/post/118957</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118957</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 23 Jul 2024 21:43:52 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Tue, 23 Jul 2024 21:37:03 GMT]]></title><description><![CDATA[<p dir="auto">Sorry to hijack this post. I can create a new one if needed. I’ve been using the “MMM-OpenWeatherMapForecast” module for a while, but for the past few weeks, it hasn’t been showing up on my MM. I’ve rebooted MM several times and made sure the module is up to date, but no luck.</p>
]]></description><link>https://forum.magicmirror.builders/post/118956</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118956</guid><dc:creator><![CDATA[Socrates]]></dc:creator><pubDate>Tue, 23 Jul 2024 21:37:03 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 13 Jul 2024 17:27:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jfields" aria-label="Profile: jfields">@<bdi>jfields</bdi></a> good debug on the multiple problem</p>
<p dir="auto">lets try this temp fix</p>
<p dir="auto">in the MM/js folder do</p>
<pre><code class="language-sh">curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror/fixloading/js/app.js &gt;app.js
</code></pre>
<p dir="auto">stop and restart MM</p>
<p dir="auto">this adds a hash to check for loading or already loading the node_helper for this module</p>
]]></description><link>https://forum.magicmirror.builders/post/118838</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118838</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 13 Jul 2024 17:27:38 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Sat, 13 Jul 2024 14:54:03 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> Thanks. I haven’t tried that one. I honestly only thought there were two, one that was way old and the one I’m using (MarcLandis). The one I’m using did get a recent update so it is somewhat supported, although I cannot open an Issue on it.</p>
<p dir="auto">From where I’m at now, I have a good working solution but using the MarcLandis version on one side and the built-in for everything else.  If I do change, I will look at the Tom-Hirschberger version. It’s getting updates and has a tab to open Issues.</p>
]]></description><link>https://forum.magicmirror.builders/post/118836</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118836</guid><dc:creator><![CDATA[jfields]]></dc:creator><pubDate>Sat, 13 Jul 2024 14:54:03 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Fri, 12 Jul 2024 15:21:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jfields" aria-label="Profile: jfields">@<bdi>jfields</bdi></a> that one is quite old</p>
<p dir="auto">I’d try this one, as the author is active<br />
<a href="https://github.com/Tom-Hirschberger/MMM-OpenWeatherForecast" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/Tom-Hirschberger/MMM-OpenWeatherForecast</a></p>
]]></description><link>https://forum.magicmirror.builders/post/118822</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118822</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 12 Jul 2024 15:21:09 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Fri, 12 Jul 2024 15:03:20 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 />
origin	<a href="https://github.com/MarcLandis/MMM-OpenWeatherMapForecast.git" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MarcLandis/MMM-OpenWeatherMapForecast.git</a> (fetch)<br />
origin	<a href="https://github.com/MarcLandis/MMM-OpenWeatherMapForecast.git" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MarcLandis/MMM-OpenWeatherMapForecast.git</a> (push)</p>
]]></description><link>https://forum.magicmirror.builders/post/118821</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118821</guid><dc:creator><![CDATA[jfields]]></dc:creator><pubDate>Fri, 12 Jul 2024 15:03:20 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Fri, 12 Jul 2024 08:40:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jfields" aria-label="Profile: jfields">@<bdi>jfields</bdi></a> which version of MMM-OpenWeatherMapForecast  are you using?</p>
<p dir="auto">in the module folder do<br />
git remote -v</p>
]]></description><link>https://forum.magicmirror.builders/post/118820</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118820</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 12 Jul 2024 08:40:22 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Fri, 12 Jul 2024 07:02:01 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> Thanks for the response. The freezing is not from exceeding the 1,000 API calls. The system is bogging down. I can watch it get worse over time by watching how often the seconds update on the clock. Also, I have a credit card on file and allow up to 2,000 call. I haven’t exceeded that but I have gone up to 1,700.<br />
I have reverted to using MMM-OpenWeatherMapForecast for just one call and that is working fine. I’m using the standard weather module for the rest of the calls.<br />
<img src="/assets/uploads/files/1720767705683-be885357-aba2-4a58-909f-47e51f2e95b6-image.png" alt="be885357-aba2-4a58-909f-47e51f2e95b6-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">API calls<br />
<img src="/assets/uploads/files/1720767204282-f68551bc-00a3-4233-ba72-bb86977a5b67-image.png" alt="f68551bc-00a3-4233-ba72-bb86977a5b67-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">pm2 status<br />
<img src="/assets/uploads/files/1720766262566-b909fbb8-f6d0-4144-a5a5-78986bf8e808-image.png" alt="b909fbb8-f6d0-4144-a5a5-78986bf8e808-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">For the config.js, I copied the module section and pasted it above. Do you need more than that?</p>
<p dir="auto">I wasn’t sure what to grab from the console tab, but I did see some errors and grabbed those.</p>
<p dir="auto"><img src="/assets/uploads/files/1720766027290-a85d4c18-22cb-4758-a480-7bc9cc3770c0-image.png" alt="a85d4c18-22cb-4758-a480-7bc9cc3770c0-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Video of some error messages popping up. They were really flashing fast at first, hard to get a screen grab so I made a video. The longer it went, the more errors, and the longer you could see them. Something is compounding.<br />
<a href="https://imgur.com/a/QXU5SzI" target="_blank" rel="noopener noreferrer nofollow ugc">https://imgur.com/a/QXU5SzI</a></p>
<p dir="auto">The longer it goes, the more errors I see.<br />
<img src="/assets/uploads/files/1720766759905-e19f524b-68bb-415a-b7f7-048059f17c29-image.png" alt="e19f524b-68bb-415a-b7f7-048059f17c29-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">One of the POST error messages<br />
<img src="/assets/uploads/files/1720767008571-bd95e4da-e553-482c-a361-b9c02738cee1-image.png" alt="bd95e4da-e553-482c-a361-b9c02738cee1-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/118819</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118819</guid><dc:creator><![CDATA[jfields]]></dc:creator><pubDate>Fri, 12 Jul 2024 07:02:01 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Thu, 11 Jul 2024 12:33:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jfields" aria-label="Profile: jfields">@<bdi>jfields</bdi></a> I don’t know the cause  of the unexpected multiples, but the ‘freeze’ is because you hit the 1000 calls per day<br />
limit of the free plan.</p>
<p dir="auto">can we see your config.js?<br />
xxx out any api key or url etc that is<br />
private but don’t  change anything else, use the code block wrapper</p>
<p dir="auto">weather is done all in browser , so any messages are logged there</p>
<p dir="auto">ctrl-shift-i  to open the developers window and then select the console tab.<br />
add weather to the files field to see messages just from the weather module</p>
<p dir="auto">you can change filter  to cal for  Calendar<br />
as well.<br />
Calendar fetching is done server side,  so the output of</p>
<pre><code> pm2 logs --lines=100 
</code></pre>
<p dir="auto">might be helpful<br />
as well as the output of</p>
<pre><code>pm2 status
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/118817</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118817</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 11 Jul 2024 12:33:53 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue on Tue, 09 Jul 2024 21:58:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jfields" aria-label="Profile: jfields">@<bdi>jfields</bdi></a></p>
<p dir="auto">without knowing if it is related to this we have another odd behaviour <a href="https://forum.magicmirror.builders/topic/18863/odd-module-load-behaviour-after-upgrading-to-2-28">here</a> which sounds similiar</p>
]]></description><link>https://forum.magicmirror.builders/post/118804</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118804</guid><dc:creator><![CDATA[karsten13]]></dc:creator><pubDate>Tue, 09 Jul 2024 21:58:42 GMT</pubDate></item></channel></rss>