<?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/">
	<channel>
		<title><![CDATA[WeatherDuino Forum - General Talking]]></title>
		<link>https://www.meteocercal.info/forum/</link>
		<description><![CDATA[WeatherDuino Forum - https://www.meteocercal.info/forum]]></description>
		<pubDate>Thu, 16 Apr 2026 18:03:01 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[soldering station]]></title>
			<link>https://www.meteocercal.info/forum/thread-2197.html</link>
			<pubDate>Tue, 11 Oct 2022 11:49:22 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=2836">gtbwise</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-2197.html</guid>
			<description><![CDATA[Hi all<br />
<br />
my soldering station is  a Yihua 8786D - i believe it is rated at 50w<br />
<br />
will that be suitable to use for my project ?<br />
<br />
thanks<br />
geoff]]></description>
			<content:encoded><![CDATA[Hi all<br />
<br />
my soldering station is  a Yihua 8786D - i believe it is rated at 50w<br />
<br />
will that be suitable to use for my project ?<br />
<br />
thanks<br />
geoff]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[2.8inch SPI Module ILI9341 - reference]]></title>
			<link>https://www.meteocercal.info/forum/thread-2036.html</link>
			<pubDate>Sun, 27 Jun 2021 16:47:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=2347">edr1924</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-2036.html</guid>
			<description><![CDATA[just for reference:<br />
<br />
very extensive info for the IL9341 display:<br />
<br />
<a href="http://www.lcdwiki.com/2.8inch_SPI_Module_ILI9341_SKU:MSP2807" target="_blank" rel="noopener" class="mycode_url">http://www.lcdwiki.com/2.8inch_SPI_Modul...KU:MSP2807</a>]]></description>
			<content:encoded><![CDATA[just for reference:<br />
<br />
very extensive info for the IL9341 display:<br />
<br />
<a href="http://www.lcdwiki.com/2.8inch_SPI_Module_ILI9341_SKU:MSP2807" target="_blank" rel="noopener" class="mycode_url">http://www.lcdwiki.com/2.8inch_SPI_Modul...KU:MSP2807</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[check the FLASH size of a 8266 module]]></title>
			<link>https://www.meteocercal.info/forum/thread-2035.html</link>
			<pubDate>Fri, 25 Jun 2021 08:19:14 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=2347">edr1924</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-2035.html</guid>
			<description><![CDATA[Chinese 8266 modules like the Wemos D1 mini clones are a black box to me, specs are hard to find<br />
<br />
I needed to know the flash memory size and found this Sketch to check that.<br />
I want to use SPIFFS mem for storing graphics etc., learning now how Werk_AG has used it... <img src="https://www.meteocercal.info/forum/images/smilies/readmanual.gif" alt="ReadManual" title="ReadManual" class="smilie smilie_21" /> <br />
<br />
more info: <br />
<a href="https://www.instructables.com/Using-ESP8266-SPIFFS/" target="_blank" rel="noopener" class="mycode_url">https://www.instructables.com/Using-ESP8266-SPIFFS/</a><br />
<br />
sample output:<br />
<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Flash real id:  0016405E<br />
Flash real size: 4194304 bytes<br />
<br />
Flash ide  size: 4194304 bytes<br />
Flash ide speed: 40000000 Hz<br />
Flash ide mode:  DIO<br />
Flash Chip configuration ok.</blockquote>
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/*<br />
  ESP8266 CheckFlashConfig by Markus Sattler<br />
  This sketch tests if the EEPROM settings of the IDE match to the Hardware<br />
*/<br />
<br />
void setup(void) {<br />
  Serial.begin(115200);<br />
}<br />
<br />
void loop() {<br />
<br />
  uint32_t realSize = ESP.getFlashChipRealSize();<br />
  uint32_t ideSize = ESP.getFlashChipSize();<br />
  FlashMode_t ideMode = ESP.getFlashChipMode();<br />
<br />
  Serial.printf("Flash real id:   %08X&#92;n", ESP.getFlashChipId());<br />
  Serial.printf("Flash real size: %u bytes&#92;n&#92;n", realSize);<br />
<br />
  Serial.printf("Flash ide  size: %u bytes&#92;n", ideSize);<br />
  Serial.printf("Flash ide speed: %u Hz&#92;n", ESP.getFlashChipSpeed());<br />
  Serial.printf("Flash ide mode:  %s&#92;n", (ideMode == FM_QIO ? "QIO" : ideMode == FM_QOUT ? "QOUT" : ideMode == FM_DIO ? "DIO" : ideMode == FM_DOUT ? "DOUT" : "UNKNOWN"));<br />
<br />
  if (ideSize != realSize) {<br />
    Serial.println("Flash Chip configuration wrong!&#92;n");<br />
  } else {<br />
    Serial.println("Flash Chip configuration ok.&#92;n");<br />
  }<br />
<br />
  delay(5000);<br />
}</code></div></div>]]></description>
			<content:encoded><![CDATA[Chinese 8266 modules like the Wemos D1 mini clones are a black box to me, specs are hard to find<br />
<br />
I needed to know the flash memory size and found this Sketch to check that.<br />
I want to use SPIFFS mem for storing graphics etc., learning now how Werk_AG has used it... <img src="https://www.meteocercal.info/forum/images/smilies/readmanual.gif" alt="ReadManual" title="ReadManual" class="smilie smilie_21" /> <br />
<br />
more info: <br />
<a href="https://www.instructables.com/Using-ESP8266-SPIFFS/" target="_blank" rel="noopener" class="mycode_url">https://www.instructables.com/Using-ESP8266-SPIFFS/</a><br />
<br />
sample output:<br />
<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Flash real id:  0016405E<br />
Flash real size: 4194304 bytes<br />
<br />
Flash ide  size: 4194304 bytes<br />
Flash ide speed: 40000000 Hz<br />
Flash ide mode:  DIO<br />
Flash Chip configuration ok.</blockquote>
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/*<br />
  ESP8266 CheckFlashConfig by Markus Sattler<br />
  This sketch tests if the EEPROM settings of the IDE match to the Hardware<br />
*/<br />
<br />
void setup(void) {<br />
  Serial.begin(115200);<br />
}<br />
<br />
void loop() {<br />
<br />
  uint32_t realSize = ESP.getFlashChipRealSize();<br />
  uint32_t ideSize = ESP.getFlashChipSize();<br />
  FlashMode_t ideMode = ESP.getFlashChipMode();<br />
<br />
  Serial.printf("Flash real id:   %08X&#92;n", ESP.getFlashChipId());<br />
  Serial.printf("Flash real size: %u bytes&#92;n&#92;n", realSize);<br />
<br />
  Serial.printf("Flash ide  size: %u bytes&#92;n", ideSize);<br />
  Serial.printf("Flash ide speed: %u Hz&#92;n", ESP.getFlashChipSpeed());<br />
  Serial.printf("Flash ide mode:  %s&#92;n", (ideMode == FM_QIO ? "QIO" : ideMode == FM_QOUT ? "QOUT" : ideMode == FM_DIO ? "DIO" : ideMode == FM_DOUT ? "DOUT" : "UNKNOWN"));<br />
<br />
  if (ideSize != realSize) {<br />
    Serial.println("Flash Chip configuration wrong!&#92;n");<br />
  } else {<br />
    Serial.println("Flash Chip configuration ok.&#92;n");<br />
  }<br />
<br />
  delay(5000);<br />
}</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Thermal image Tx board]]></title>
			<link>https://www.meteocercal.info/forum/thread-2033.html</link>
			<pubDate>Thu, 24 Jun 2021 11:38:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=2347">edr1924</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-2033.html</guid>
			<description><![CDATA[Just for fun...<br />
<br />
Will post some more sometime...<br />
<br />
Tx Board...<br />
Shot with the Seek Shot Pro Thermal Imaging Camera<br />
<img src="https://i.postimg.cc/FR8twYsx/20210624-120820-A.jpg" loading="lazy"  alt="[Image: 20210624-120820-A.jpg]" class="mycode_img img-responsive" />]]></description>
			<content:encoded><![CDATA[Just for fun...<br />
<br />
Will post some more sometime...<br />
<br />
Tx Board...<br />
Shot with the Seek Shot Pro Thermal Imaging Camera<br />
<img src="https://i.postimg.cc/FR8twYsx/20210624-120820-A.jpg" loading="lazy"  alt="[Image: 20210624-120820-A.jpg]" class="mycode_img img-responsive" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[AQM]]></title>
			<link>https://www.meteocercal.info/forum/thread-1983.html</link>
			<pubDate>Tue, 13 Apr 2021 23:31:48 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=903">Barrow4491</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1983.html</guid>
			<description><![CDATA[Hi,<br />
I have a question re the AQM; <br />
When first booting how many reads should it take to initialise the CO2 sensor?<br />
Regards<br />
Jim]]></description>
			<content:encoded><![CDATA[Hi,<br />
I have a question re the AQM; <br />
When first booting how many reads should it take to initialise the CO2 sensor?<br />
Regards<br />
Jim]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Widget/Templates AQI - Enhancement Proposal]]></title>
			<link>https://www.meteocercal.info/forum/thread-1979.html</link>
			<pubDate>Fri, 09 Apr 2021 05:42:27 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=2474">tobyportugal</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1979.html</guid>
			<description><![CDATA[Hello,<br />
<br />
Here is a link to make widgets/templates easily.<br />
<br />
<a href="https://aqi.eco/en" target="_blank" rel="noopener" class="mycode_url">https://aqi.eco/en</a><br />
<br />
I use this for my AQI sensor community.<br />
<br />
Widget:<br />
<img src="https://filedn.com/lxtJY18lcdpH0L6MOjBnGBF/2021-04-09_07-04-05.jpg" loading="lazy"  alt="[Image: 2021-04-09_07-04-05.jpg]" class="mycode_img img-responsive" /><br />
Templates <br />
<a href="https://portugal.aqi.eco/en/001" target="_blank" rel="noopener" class="mycode_url">https://portugal.aqi.eco/en/001</a><br />
<a href="https://portugal.aqi.eco/en/all/3744" target="_blank" rel="noopener" class="mycode_url">https://portugal.aqi.eco/en/all/3744</a> :<br />
<br />
<img src="https://filedn.com/lxtJY18lcdpH0L6MOjBnGBF/2021-04-09_07-08-55.jpg" loading="lazy"  alt="[Image: 2021-04-09_07-08-55.jpg]" class="mycode_img img-responsive" /><br />
<br />
I think you can create some for your AQI WheaterDuino.<br />
<br />
Have a nice weekend<br />
Have a nice weekend]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
Here is a link to make widgets/templates easily.<br />
<br />
<a href="https://aqi.eco/en" target="_blank" rel="noopener" class="mycode_url">https://aqi.eco/en</a><br />
<br />
I use this for my AQI sensor community.<br />
<br />
Widget:<br />
<img src="https://filedn.com/lxtJY18lcdpH0L6MOjBnGBF/2021-04-09_07-04-05.jpg" loading="lazy"  alt="[Image: 2021-04-09_07-04-05.jpg]" class="mycode_img img-responsive" /><br />
Templates <br />
<a href="https://portugal.aqi.eco/en/001" target="_blank" rel="noopener" class="mycode_url">https://portugal.aqi.eco/en/001</a><br />
<a href="https://portugal.aqi.eco/en/all/3744" target="_blank" rel="noopener" class="mycode_url">https://portugal.aqi.eco/en/all/3744</a> :<br />
<br />
<img src="https://filedn.com/lxtJY18lcdpH0L6MOjBnGBF/2021-04-09_07-08-55.jpg" loading="lazy"  alt="[Image: 2021-04-09_07-08-55.jpg]" class="mycode_img img-responsive" /><br />
<br />
I think you can create some for your AQI WheaterDuino.<br />
<br />
Have a nice weekend<br />
Have a nice weekend]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Printed circuit boards]]></title>
			<link>https://www.meteocercal.info/forum/thread-1976.html</link>
			<pubDate>Wed, 07 Apr 2021 16:00:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=2689">DavidWard</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1976.html</guid>
			<description><![CDATA[I was reading online and learning about what PCBs are and the different types that are out there. Does anyone know in what specific application you would use a single-layer PCB vs. a multilayer PCB?]]></description>
			<content:encoded><![CDATA[I was reading online and learning about what PCBs are and the different types that are out there. Does anyone know in what specific application you would use a single-layer PCB vs. a multilayer PCB?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Wunderground personal weather stations disappeared]]></title>
			<link>https://www.meteocercal.info/forum/thread-1957.html</link>
			<pubDate>Tue, 23 Mar 2021 21:45:28 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=1">werk_ag</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1957.html</guid>
			<description><![CDATA[Its only with me, or Wunderground personal weather stations disappeared for everyone?<br />
<br />
At this moment, WU says that I have no stations!!! The two I have reporting to WU aren't shown on the map too! But is not only my stations, I can't see any other of the nearby weather stations I used to see.<br />
<br />
Does your stations continue on WU?<br />
<br />
 <img src="https://www.meteocercal.info/forum/images/smilies/undecided.gif" alt="Undecided" title="Undecided" class="smilie smilie_20" /> <br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2656" target="_blank">WU_gone.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">52,77 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">1418</span></span>
</div>
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Its only with me, or Wunderground personal weather stations disappeared for everyone?<br />
<br />
At this moment, WU says that I have no stations!!! The two I have reporting to WU aren't shown on the map too! But is not only my stations, I can't see any other of the nearby weather stations I used to see.<br />
<br />
Does your stations continue on WU?<br />
<br />
 <img src="https://www.meteocercal.info/forum/images/smilies/undecided.gif" alt="Undecided" title="Undecided" class="smilie smilie_20" /> <br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2656" target="_blank">WU_gone.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">52,77 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">1418</span></span>
</div>
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[CumulusMX is going better and better...]]></title>
			<link>https://www.meteocercal.info/forum/thread-1928.html</link>
			<pubDate>Mon, 04 Jan 2021 00:57:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=1">werk_ag</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1928.html</guid>
			<description><![CDATA[On every release CumulusMX is going better and better, mcrossley is doing a great job which surely will keep Cumulus as the most used Weather software.<br />
<br />
Today, when I was seeing the change log of the latest release release 3.9.4 - build 3099 Dec 30 I noticed three new very important settings: <br />
<br />
<span style="font-weight: bold;" class="mycode_b">Start-up Host PING:</span> Specify a remote hostname or IP address, Cumulus will wait for a successful PING from this address before continuing<br />
<span style="font-weight: bold;" class="mycode_b">Start-up Delay:</span> Specify a fixed time in seconds to delay the start-up. The delay will be executed after the PING check is one is specified<br />
<span style="font-weight: bold;" class="mycode_b">Start-up Delay Max Uptime:</span> Specify a maximum system uptime in seconds after which the delay will no longer be applied. Set to zero to always delay<br />
<br />
Having CumulusMX starting automatically at every PI restart or boot, in many cases may not be enought to ensure a reliable connection to the weather station receiver, being it an WeatherDuino or not.<br />
<br />
Specially with WeatherDuino, its highly recommendable having some kind of delay before Cumulus starts, after a PI restart, this is important to give time to WeatherDuino receive data from the main sensors and complete its initialization sequence. Until this initialization completes, WeatherDuino refuses connection with the weather software, whatever is it.<br />
<br />
Up to now, I was using this command on the rc-local file to make CumulusMX start only 2 minutes after a PI reboot<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code># Run Cumulus star script 120 seconds after system restart or boot.<br />
#sleep 120&nbsp;&nbsp;&amp;&amp; /mnt/SSD/Weather/CumulusMX/cumulusmx.sh</code></div></div><br />
With the new CumulusMX options introduced on release 3.9.4 - build 3099 Dec 30 we have now a better way of doing it, and run CumulusMX as a service.<br />
Much better than I can do, mcrossley explains it all here:<br />
<br />
<a href="https://cumulus.hosiene.co.uk/viewtopic.php?p=149191#p149191" target="_blank" rel="noopener" class="mycode_url">https://cumulus.hosiene.co.uk/viewtopic....91#p149191</a><br />
<br />
It worth reading carefully  <img src="https://www.meteocercal.info/forum/images/smilies/readmanual.gif" alt="ReadManual" title="ReadManual" class="smilie smilie_21" />]]></description>
			<content:encoded><![CDATA[On every release CumulusMX is going better and better, mcrossley is doing a great job which surely will keep Cumulus as the most used Weather software.<br />
<br />
Today, when I was seeing the change log of the latest release release 3.9.4 - build 3099 Dec 30 I noticed three new very important settings: <br />
<br />
<span style="font-weight: bold;" class="mycode_b">Start-up Host PING:</span> Specify a remote hostname or IP address, Cumulus will wait for a successful PING from this address before continuing<br />
<span style="font-weight: bold;" class="mycode_b">Start-up Delay:</span> Specify a fixed time in seconds to delay the start-up. The delay will be executed after the PING check is one is specified<br />
<span style="font-weight: bold;" class="mycode_b">Start-up Delay Max Uptime:</span> Specify a maximum system uptime in seconds after which the delay will no longer be applied. Set to zero to always delay<br />
<br />
Having CumulusMX starting automatically at every PI restart or boot, in many cases may not be enought to ensure a reliable connection to the weather station receiver, being it an WeatherDuino or not.<br />
<br />
Specially with WeatherDuino, its highly recommendable having some kind of delay before Cumulus starts, after a PI restart, this is important to give time to WeatherDuino receive data from the main sensors and complete its initialization sequence. Until this initialization completes, WeatherDuino refuses connection with the weather software, whatever is it.<br />
<br />
Up to now, I was using this command on the rc-local file to make CumulusMX start only 2 minutes after a PI reboot<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code># Run Cumulus star script 120 seconds after system restart or boot.<br />
#sleep 120&nbsp;&nbsp;&amp;&amp; /mnt/SSD/Weather/CumulusMX/cumulusmx.sh</code></div></div><br />
With the new CumulusMX options introduced on release 3.9.4 - build 3099 Dec 30 we have now a better way of doing it, and run CumulusMX as a service.<br />
Much better than I can do, mcrossley explains it all here:<br />
<br />
<a href="https://cumulus.hosiene.co.uk/viewtopic.php?p=149191#p149191" target="_blank" rel="noopener" class="mycode_url">https://cumulus.hosiene.co.uk/viewtopic....91#p149191</a><br />
<br />
It worth reading carefully  <img src="https://www.meteocercal.info/forum/images/smilies/readmanual.gif" alt="ReadManual" title="ReadManual" class="smilie smilie_21" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Replacing a Davis with weatherduino]]></title>
			<link>https://www.meteocercal.info/forum/thread-1913.html</link>
			<pubDate>Sat, 21 Nov 2020 11:49:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=103">Adrian_Hudson</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1913.html</guid>
			<description><![CDATA[I have an aging Davis system and would like to replace it with a Weatherduino. I currently store the data on a raspberry pi and run a simple web site from it. I don't want to disturb this part of my weather setup so a Weatherduino seems a great solution. Simply replace the Davis with the Weatherduino - the same data protocol and away you go!<br />
<br />
I have three questions though.<br />
<br />
1. I want to incorporate a data logging function the same as the Davis Data Logger. If the Raspberry PI goes down I don't want to lose data. From the comparison chart I see the Pro2 PLUS system has a Davis data logging function but the Pro2 Compact does not. Is the data logging function of the pro2 Plus a built in function or do I need a real Davis logger to make it work?<br />
<br />
2. Is there any way I could use the Pro2 Compact system and add a Logging function?<br />
<br />
3. If I were to build a Pro2 Plus system, I note the PCB can no longer be bought with the SMD components pre-assembled. Is there a kit of SMD parts available or do I have to source all the tiny bits on ebay? I have done quite a bit of electronics building in the past but I have never assembled SMD parts. Is it even possible to do by hand??<br />
<br />
Thanks for any help.]]></description>
			<content:encoded><![CDATA[I have an aging Davis system and would like to replace it with a Weatherduino. I currently store the data on a raspberry pi and run a simple web site from it. I don't want to disturb this part of my weather setup so a Weatherduino seems a great solution. Simply replace the Davis with the Weatherduino - the same data protocol and away you go!<br />
<br />
I have three questions though.<br />
<br />
1. I want to incorporate a data logging function the same as the Davis Data Logger. If the Raspberry PI goes down I don't want to lose data. From the comparison chart I see the Pro2 PLUS system has a Davis data logging function but the Pro2 Compact does not. Is the data logging function of the pro2 Plus a built in function or do I need a real Davis logger to make it work?<br />
<br />
2. Is there any way I could use the Pro2 Compact system and add a Logging function?<br />
<br />
3. If I were to build a Pro2 Plus system, I note the PCB can no longer be bought with the SMD components pre-assembled. Is there a kit of SMD parts available or do I have to source all the tiny bits on ebay? I have done quite a bit of electronics building in the past but I have never assembled SMD parts. Is it even possible to do by hand??<br />
<br />
Thanks for any help.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Multiple Emails]]></title>
			<link>https://www.meteocercal.info/forum/thread-1912.html</link>
			<pubDate>Sat, 21 Nov 2020 09:38:14 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=26">water01</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1912.html</guid>
			<description><![CDATA[I am receiving multiple emails about the "New Air Quality Monitor II Software.]]></description>
			<content:encoded><![CDATA[I am receiving multiple emails about the "New Air Quality Monitor II Software.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Receiver initialization question]]></title>
			<link>https://www.meteocercal.info/forum/thread-1900.html</link>
			<pubDate>Fri, 18 Sep 2020 11:38:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=2628">J.Jantti</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1900.html</guid>
			<description><![CDATA[Hello everyone,<br />
While waiting for the arrival of my Pro2 Compact, I have a question.<br />
<br />
A quote from the Wiki-pages says this:<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>The first time a new receiver runs, it needs to perform a special initialization sequence. This initialization sequence ends after the receiver has received at least one data packet from each of the three main sensors (Temperature / Humidity, Wind and Rain). During the initialization process the screen will show three letters (<span style="font-weight: bold;" class="mycode_b">T-W-R</span>) that will change from Red to Green once the corresponding data packet has been received.<br />
From the above, it is evident that if you don't have a Transmitter unit already working and transmitting data, the receiver will stay forever in the initialization sequence. This is why we recommend to anyone that is starting to build a WeatherDuino weather station, to always start by assembling the Transmitter unit first.<br />
On subsequent restarts, the receiver also will remain in the initialization screen, until it receives data from the three main sensors referred above.</blockquote>
<br />
How I understand this, temperature, humidity and wind are probably reported faster/immediately to TX as those are likely to be present all the time (unless there's a sensor failure/disconnect, of course), but the rain gauge doesn't usually report anything until the rain collector tips over, since a tipping bucket-type rain gauge is just a simple Reed switch-operated circuit.<br />
<br />
Correct me if I'm wrong here, but wouldn't this mean that if there's a power failure and once resolved, the init process will not complete until the TX receives a single pulse from the rain gauge and reports it to RX?]]></description>
			<content:encoded><![CDATA[Hello everyone,<br />
While waiting for the arrival of my Pro2 Compact, I have a question.<br />
<br />
A quote from the Wiki-pages says this:<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>The first time a new receiver runs, it needs to perform a special initialization sequence. This initialization sequence ends after the receiver has received at least one data packet from each of the three main sensors (Temperature / Humidity, Wind and Rain). During the initialization process the screen will show three letters (<span style="font-weight: bold;" class="mycode_b">T-W-R</span>) that will change from Red to Green once the corresponding data packet has been received.<br />
From the above, it is evident that if you don't have a Transmitter unit already working and transmitting data, the receiver will stay forever in the initialization sequence. This is why we recommend to anyone that is starting to build a WeatherDuino weather station, to always start by assembling the Transmitter unit first.<br />
On subsequent restarts, the receiver also will remain in the initialization screen, until it receives data from the three main sensors referred above.</blockquote>
<br />
How I understand this, temperature, humidity and wind are probably reported faster/immediately to TX as those are likely to be present all the time (unless there's a sensor failure/disconnect, of course), but the rain gauge doesn't usually report anything until the rain collector tips over, since a tipping bucket-type rain gauge is just a simple Reed switch-operated circuit.<br />
<br />
Correct me if I'm wrong here, but wouldn't this mean that if there's a power failure and once resolved, the init process will not complete until the TX receives a single pulse from the rain gauge and reports it to RX?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Anatomy of an extreme meteorological event...]]></title>
			<link>https://www.meteocercal.info/forum/thread-1875.html</link>
			<pubDate>Wed, 22 Jul 2020 03:46:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=1">werk_ag</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1875.html</guid>
			<description><![CDATA[An extreme meteorological event seen by the MeteoCercal weather station. <br />
Today, 21/07/2020 between 15:45 and 16:45 - Portugal, West region.<br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2426" target="_blank">SolarRadiation.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">55,66 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">368</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2427" target="_blank">Pressure.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">46,96 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">374</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2428" target="_blank">Rain.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">44,35 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">381</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2429" target="_blank">RainFallRate.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">44,7 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">377</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2430" target="_blank">Temperature.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">55,97 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">371</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2431" target="_blank">Humidity_RH.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">47,27 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">379</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="PNG Image" alt=".png" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2432" target="_blank">IMG_20200721_161859_net.png</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">182,38 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">425</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="PNG Image" alt=".png" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2433" target="_blank">IMG_20200721_162446_net.png</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">177,5 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">320</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
Intense hail with the size of a ping pong ball and 25mm of rain in just a few minutes... climatic changes? Of course not, its just a new technique to refresh the grass, a few days ago we reached to 39ºC. <br />
Pear production, one of the region's main agricultural crops, has suffered considerable damage.]]></description>
			<content:encoded><![CDATA[An extreme meteorological event seen by the MeteoCercal weather station. <br />
Today, 21/07/2020 between 15:45 and 16:45 - Portugal, West region.<br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2426" target="_blank">SolarRadiation.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">55,66 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">368</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2427" target="_blank">Pressure.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">46,96 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">374</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2428" target="_blank">Rain.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">44,35 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">381</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2429" target="_blank">RainFallRate.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">44,7 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">377</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2430" target="_blank">Temperature.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">55,97 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">371</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="JPG Image" alt=".jpg" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2431" target="_blank">Humidity_RH.JPG</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">47,27 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">379</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="PNG Image" alt=".png" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2432" target="_blank">IMG_20200721_161859_net.png</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">182,38 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">425</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
<!-- start: postbit_attachments_attachment -->
<div style="padding:4px 0px;"><span class="inline-block vmiddle"><!-- start: attachment_icon -->
<img src="https://www.meteocercal.info/forum/images/attachtypes/image.gif" title="PNG Image" alt=".png" />
<!-- end: attachment_icon --></span>
<a  class="vmiddle inline-block" href="attachment.php?aid=2433" target="_blank">IMG_20200721_162446_net.png</a> <span class="smalltext float_right">Size: <span class="inline-block vmiddle">177,5 KB</span>&nbsp;&nbsp;Downloads: <span class="inline-block vmiddle">320</span></span>
</div>
<!-- end: postbit_attachments_attachment --><br />
<br />
Intense hail with the size of a ping pong ball and 25mm of rain in just a few minutes... climatic changes? Of course not, its just a new technique to refresh the grass, a few days ago we reached to 39ºC. <br />
Pear production, one of the region's main agricultural crops, has suffered considerable damage.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[UV Index window material and incidence angle]]></title>
			<link>https://www.meteocercal.info/forum/thread-1868.html</link>
			<pubDate>Tue, 30 Jun 2020 22:20:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=2188">chsims1</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1868.html</guid>
			<description><![CDATA[Not even got my TX board or receiver yet, but thinking about UV index and a UVM-30A sensor.  It seems obvious to me that a JGS1/JGS2 fused silica window should be the material of choice, but I was wondering about what 3D angle of incoming light needs to be met for reasonable accurate results ie. how close does the sensor need to be to the window?  What designs of enclosure have people come up with to measure UV index?<br />
<br />
Regards,<br />
<br />
Ian<br />
<br />
Edit: I'm sure that there are full specifications somewhere about how to make this measurement, and with this particular sensor. I just haven't found them.]]></description>
			<content:encoded><![CDATA[Not even got my TX board or receiver yet, but thinking about UV index and a UVM-30A sensor.  It seems obvious to me that a JGS1/JGS2 fused silica window should be the material of choice, but I was wondering about what 3D angle of incoming light needs to be met for reasonable accurate results ie. how close does the sensor need to be to the window?  What designs of enclosure have people come up with to measure UV index?<br />
<br />
Regards,<br />
<br />
Ian<br />
<br />
Edit: I'm sure that there are full specifications somewhere about how to make this measurement, and with this particular sensor. I just haven't found them.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[New Tx board]]></title>
			<link>https://www.meteocercal.info/forum/thread-1864.html</link>
			<pubDate>Fri, 26 Jun 2020 02:46:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.meteocercal.info/forum/member.php?action=profile&uid=903">Barrow4491</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.meteocercal.info/forum/thread-1864.html</guid>
			<description><![CDATA[Werk, <br />
Are there any plans to create a new TX board with OTA facilities? <br />
I think that would be very popular as doing any updates is, in most cases difficult due mainly to it’s usually elevated and difficult location?<br />
Regards<br />
Jim]]></description>
			<content:encoded><![CDATA[Werk, <br />
Are there any plans to create a new TX board with OTA facilities? <br />
I think that would be very popular as doing any updates is, in most cases difficult due mainly to it’s usually elevated and difficult location?<br />
Regards<br />
Jim]]></content:encoded>
		</item>
	</channel>
</rss>