<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Raspberry PI Pico W Weather Monitor with e-Paper	</title>
	<atom:link href="https://peppe8o.com/raspberry-pi-pico-weather-monitor/feed/" rel="self" type="application/rss+xml" />
	<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/</link>
	<description>Raspberry PI, Arduino and Electronics made simple</description>
	<lastBuildDate>Mon, 02 Jun 2025 15:19:22 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: peppe8o		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-36139</link>

		<dc:creator><![CDATA[peppe8o]]></dc:creator>
		<pubDate>Sat, 28 Sep 2024 09:19:26 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-36139</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-36055&quot;&gt;Simon&lt;/a&gt;.

...in the meanwhile, please can you try to add the following 2 lines at the begin of the pico-weather.py script and let me know if this fixes?

&lt;code&gt;import machine
if machine.reset_cause() == machine.DEEPSLEEP_RESET: machine.reset()&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-36055">Simon</a>.</p>
<p>&#8230;in the meanwhile, please can you try to add the following 2 lines at the begin of the pico-weather.py script and let me know if this fixes?</p>
<p><code>import machine<br />
if machine.reset_cause() == machine.DEEPSLEEP_RESET: machine.reset()</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: peppe8o		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-36137</link>

		<dc:creator><![CDATA[peppe8o]]></dc:creator>
		<pubDate>Sat, 28 Sep 2024 09:02:15 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-36137</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-36055&quot;&gt;Simon&lt;/a&gt;.

Hi Simon. I will try to re-assemble the project again in these days and let you know. It&#039;s really strange]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-36055">Simon</a>.</p>
<p>Hi Simon. I will try to re-assemble the project again in these days and let you know. It&#8217;s really strange</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Simon		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-36055</link>

		<dc:creator><![CDATA[Simon]]></dc:creator>
		<pubDate>Fri, 27 Sep 2024 11:30:35 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-36055</guid>

					<description><![CDATA[Hello, it&#039;s work nice, but there is a hack . When it goes to deep sleep it never wake up. 
The time interval is set for 5 min but even after 20 min its not wake up. Is i missing something ? 
In wemos D1 it&#039;s works fine but in Raspberry Pi Pico W with RP2040 not.

Thanks for any clue.]]></description>
			<content:encoded><![CDATA[<p>Hello, it&#8217;s work nice, but there is a hack . When it goes to deep sleep it never wake up.<br />
The time interval is set for 5 min but even after 20 min its not wake up. Is i missing something ?<br />
In wemos D1 it&#8217;s works fine but in Raspberry Pi Pico W with RP2040 not.</p>
<p>Thanks for any clue.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: peppe8o		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32295</link>

		<dc:creator><![CDATA[peppe8o]]></dc:creator>
		<pubDate>Sat, 27 Jul 2024 14:06:39 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-32295</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32293&quot;&gt;Tom&lt;/a&gt;.

Ok, thanks. Found that the new 3.0 API call should work with a small change in the code, by changing my &quot;pico-weather.py&quot; script at this line:
&lt;code&gt;url_call=&quot;https://api.openweathermap.org/data/&lt;strong&gt;2.5&lt;/strong&gt;/onecall?lat=&quot;+lat+\&lt;/code&gt;
with this:
&lt;code&gt;url_call=&quot;https://api.openweathermap.org/data/&lt;strong&gt;3.0&lt;/strong&gt;/onecall?lat=&quot;+lat+\&lt;/code&gt;

To make it work, after signin in you probably need to subscribe the One Call API 3.0 from &lt;a href=&quot;https://openweathermap.org/api&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow ugc&quot;&gt;https://openweathermap.org/api&lt;/a&gt;.
So, they assure that the first 1000 API calls are for free, but you need anyway to put your credit card in the subscription. They also allow you to set this limit in the  &quot;Billing plan&quot; tab in your Personal account.

Now, I usually don&#039;t want to force my readers to use credit card for any of the projects i show them, so I will evaluate to find an alternative. But you are free to proceed with OpenWeather in this way (please let me know, also for feedback)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32293">Tom</a>.</p>
<p>Ok, thanks. Found that the new 3.0 API call should work with a small change in the code, by changing my &#8220;pico-weather.py&#8221; script at this line:<br />
<code>url_call="https://api.openweathermap.org/data/<strong>2.5</strong>/onecall?lat="+lat+\</code><br />
with this:<br />
<code>url_call="https://api.openweathermap.org/data/<strong>3.0</strong>/onecall?lat="+lat+\</code></p>
<p>To make it work, after signin in you probably need to subscribe the One Call API 3.0 from <a href="https://openweathermap.org/api" target="_blank" rel="noopener nofollow ugc">https://openweathermap.org/api</a>.<br />
So, they assure that the first 1000 API calls are for free, but you need anyway to put your credit card in the subscription. They also allow you to set this limit in the  &#8220;Billing plan&#8221; tab in your Personal account.</p>
<p>Now, I usually don&#8217;t want to force my readers to use credit card for any of the projects i show them, so I will evaluate to find an alternative. But you are free to proceed with OpenWeather in this way (please let me know, also for feedback)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tom		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32293</link>

		<dc:creator><![CDATA[Tom]]></dc:creator>
		<pubDate>Sat, 27 Jul 2024 11:21:33 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-32293</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32200&quot;&gt;peppe8o&lt;/a&gt;.

The One Call API 2.5 has been deprecated on June 2024, new is One Call API 3.0. Your script doesnt work.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32200">peppe8o</a>.</p>
<p>The One Call API 2.5 has been deprecated on June 2024, new is One Call API 3.0. Your script doesnt work.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: peppe8o		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32200</link>

		<dc:creator><![CDATA[peppe8o]]></dc:creator>
		<pubDate>Thu, 25 Jul 2024 14:49:58 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-32200</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32198&quot;&gt;Tom&lt;/a&gt;.

Hi Tom,
this part in my script doesn&#039;t need to be manually changed, as it uses the official API call URL from OpenWeather. This URL gets the correct values (longitude, exclude, units, and API Key) from the variables set at earlier stage in the script.
Please let me know if I didn&#039;t understand correctly your question]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32198">Tom</a>.</p>
<p>Hi Tom,<br />
this part in my script doesn&#8217;t need to be manually changed, as it uses the official API call URL from OpenWeather. This URL gets the correct values (longitude, exclude, units, and API Key) from the variables set at earlier stage in the script.<br />
Please let me know if I didn&#8217;t understand correctly your question</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tom		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-32198</link>

		<dc:creator><![CDATA[Tom]]></dc:creator>
		<pubDate>Thu, 25 Jul 2024 14:08:20 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-32198</guid>

					<description><![CDATA[&lt;code&gt;https://api.openweathermap.org/data/2.5/onecall?lat=&quot;+lat+\
          &quot;&#038;lon=&quot;+lon+\
          &quot;&#038;exclude=&quot;+exclude+\
          &quot;&#038;units=&quot;+units+\
          &quot;&#038;appid=&quot;+api_key&lt;/code&gt;

Who is in actually API ...&quot;/onecall...&quot;. Its good? My English is bad...]]></description>
			<content:encoded><![CDATA[<p><code>https://api.openweathermap.org/data/2.5/onecall?lat="+lat+\<br />
          "&amp;lon="+lon+\<br />
          "&amp;exclude="+exclude+\<br />
          "&amp;units="+units+\<br />
          "&amp;appid="+api_key</code></p>
<p>Who is in actually API &#8230;&#8221;/onecall&#8230;&#8221;. Its good? My English is bad&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: peppe8o		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-30597</link>

		<dc:creator><![CDATA[peppe8o]]></dc:creator>
		<pubDate>Wed, 19 Jun 2024 06:07:55 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-30597</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-30566&quot;&gt;Ryan&lt;/a&gt;.

I&#039;m really happy that you learned to make this not easy project and how to debug these errors with the help of my blog. This is why I keep going on: having people new or quite new to microelectronics and programming able to build their projects. Thank you for your feedback about the error, I&#039;ll try to manage this exception also in my code]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-30566">Ryan</a>.</p>
<p>I&#8217;m really happy that you learned to make this not easy project and how to debug these errors with the help of my blog. This is why I keep going on: having people new or quite new to microelectronics and programming able to build their projects. Thank you for your feedback about the error, I&#8217;ll try to manage this exception also in my code</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ryan		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-30566</link>

		<dc:creator><![CDATA[Ryan]]></dc:creator>
		<pubDate>Tue, 18 Jun 2024 15:39:39 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-30566</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-30477&quot;&gt;peppe8o&lt;/a&gt;.

So! I ran into another KeyError on rain from the daily forecast. If there is no rain, the API does not return the rain value. I had to do
try:
    rain_qty=str(forecast[&quot;daily&quot;][0][&quot;rain&quot;])
except KeyError:
    rain_qty=&quot;0&quot;

I don&#039;t know if this is the best solution, but I feel a little impressed with myself since I know very, very little about programming but I was able to get it to work :-D]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-30477">peppe8o</a>.</p>
<p>So! I ran into another KeyError on rain from the daily forecast. If there is no rain, the API does not return the rain value. I had to do<br />
try:<br />
    rain_qty=str(forecast[&#8220;daily&#8221;][0][&#8220;rain&#8221;])<br />
except KeyError:<br />
    rain_qty=&#8221;0&#8243;</p>
<p>I don&#8217;t know if this is the best solution, but I feel a little impressed with myself since I know very, very little about programming but I was able to get it to work 😀</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: peppe8o		</title>
		<link>https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-30552</link>

		<dc:creator><![CDATA[peppe8o]]></dc:creator>
		<pubDate>Tue, 18 Jun 2024 11:00:13 +0000</pubDate>
		<guid isPermaLink="false">https://peppe8o.com/?p=7556#comment-30552</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-30551&quot;&gt;Ryan&lt;/a&gt;.

<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f923.png" alt="🤣" class="wp-smiley" style="height: 1em; max-height: 1em;" />]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://peppe8o.com/raspberry-pi-pico-weather-monitor/#comment-30551">Ryan</a>.</p>
<p>🤣</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
