<?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[Mini Weather Station]]></title><description><![CDATA[<p dir="auto">This is a new mini weather station that I have been working on.</p>
<p dir="auto">It provides Temperature, Humidity, Pressure, and Battery Voltage.</p>
<p dir="auto"><img src="/uploads/upload-f5af6a59-dbc8-4f54-b6e7-d38786dc2e36.JPG" alt="IMG_0207.JPG" class=" img-fluid img-markdown" /></p>
<p dir="auto"><img src="/uploads/upload-79da4fde-2f91-42ff-9db2-fd36c8a8a44c.JPG" alt="IMG_0208.JPG" class=" img-fluid img-markdown" /></p>
<p dir="auto">The case is designed to be printed without the need for any support, has vents in the front and sides. The front slides on to make it easy to replace the 9v battery. It is designed to take a 50x70mm prototype board. This gives heaps of room for the sensors.</p>
<p dir="auto">The 3d files can be found on <a href="http://www.thingiverse.com/thing:704715" rel="nofollow ugc">http://www.thingiverse.com/thing:704715</a></p>
<p dir="auto">The code is mostly a refactor from the examples in the MySensors libraries, with a simplification of the forecast algorithm to reduce the amount of memory that it uses.</p>
<pre><code>#include &lt;SPI.h&gt;
#include &lt;MySensor.h&gt;  
#include &lt;DHT.h&gt;  
#include &lt;Wire.h&gt;
#include &lt;Adafruit_BMP085.h&gt;

#define CHILD_ID_HUM 0
#define CHILD_ID_TEMP 1
#define CHILD_ID_BARO 2
#define CHILD_ID_BARO_TEMP 3

#define HUMIDITY_SENSOR_DIGITAL_PIN 3
int BATTERY_SENSE_PIN = A0;  // select the input pin for the battery sense point

#define SLEEP_MINUTE 60000
#define SLEEP_FIVE_MINUTES 300000

MySensor gw;
DHT dht;
Adafruit_BMP085 bmp = Adafruit_BMP085();      // Digital Pressure Sensor 

float   lastTemp = -1.0;
float   lastHum = -1.0;
float   lastBaroTemp = -1.0;
int     lastForecast = -1;
char    *weather[] = { "Stable", "Sunny", "Cloudy", "Unstable", "Thunderstorm",	"Unknown" };
int     minutes;
int     pressureSamples[5];
float   lastPressureAvg = -1.0;
int     lastPressure = -1;
int     minuteCount = 0;
float   pressureAvg;
int     pressure;
float   dP_dt;
boolean metric = true;

MyMessage msgHum(CHILD_ID_HUM, V_HUM);
MyMessage msgTemp(CHILD_ID_TEMP, V_TEMP);
MyMessage msgBaroTemp(CHILD_ID_BARO_TEMP, V_TEMP);
MyMessage msgBaro(CHILD_ID_BARO, V_PRESSURE);
MyMessage msgForecast(CHILD_ID_BARO, V_FORECAST);

void setup() {
	// use the 1.1 V internal reference
	analogReference(INTERNAL);
	gw.begin();
	dht.setup(HUMIDITY_SENSOR_DIGITAL_PIN);
	if (!bmp.begin()) {
		Serial.println("Could not find a valid BMP085 sensor, check wiring!");
	}
	// Send the Sketch Version Information to the Gateway
	gw.sendSketchInfo("Mini Weather Station", "3.2");

	// Register all sensors to gw (they will be created as child devices)
	gw.present(CHILD_ID_HUM, S_HUM);
	gw.present(CHILD_ID_TEMP, S_TEMP);
	gw.present(CHILD_ID_BARO, S_BARO);
	gw.present(CHILD_ID_BARO_TEMP, S_TEMP);
	metric = gw.getConfig().isMetric;
}

void loop() {
  
  	Serial.print("minuteCount = ");
	Serial.println(minuteCount);

        // The pressure Sensor Stuff
	int forecast = SamplePressure();


        if ( minuteCount &gt; 4 ) { // only every 5 minutes
                // Process the barometric sensor data 
        	float baro_temperature = bmp.readTemperature();
        	if (!metric) {    // Convert to fahrenheit
        		baro_temperature = baro_temperature * 9.0 / 5.0 + 32.0;
        	}

        	if (baro_temperature != lastBaroTemp) {
        		gw.send(msgBaroTemp.set(baro_temperature, 1));
        		lastBaroTemp = baro_temperature;
        	}

        	if (pressure != lastPressure) {
        		gw.send(msgBaro.set(pressure, 0));
                        //delay(1000);
//        		gw.send(msgBaro.set(pressure));
        		lastPressure = pressure;
        	}

        	if (forecast != lastForecast) {
        		gw.send(msgForecast.set(weather[forecast]));
        		lastForecast = forecast;
        	}


                // The humidity sensor stuff
      	        delay(dht.getMinimumSamplingPeriod());
      
      	        float temperature = dht.getTemperature();
        	if (isnan(temperature)) {
        		Serial.println("Failed reading temperature from DHT");
        	} else if (temperature != lastTemp) {
        		lastTemp = temperature;
      	        	if (!metric) {
      		        	temperature = dht.toFahrenheit(temperature);
      		        }
      		        gw.send(msgTemp.set(temperature, 1));
      		        Serial.print("Temperature: ");
      		        Serial.println(temperature);
      	        }
      
        	float humidity = dht.getHumidity();
        	if (isnan(humidity)) {
        		Serial.println("Failed reading humidity from DHT");
        	} else if (humidity != lastHum) {
        		lastHum = humidity;
        		gw.send(msgHum.set(humidity, 1));
        		Serial.print("Humidity: ");
        		Serial.println(humidity);
        	}
      
      
        	// get the battery Voltage
        	long sensorValue = analogRead(BATTERY_SENSE_PIN);
      
        	// 1M, 100K divider across battery and using internal ADC ref of 1.1V
        	// Sense point is bypassed with 0.1 uF cap to reduce noise at that point
        	// ((1e6+100e3)/100e3)*1.1 = Vmax = 12.1 Volts
        	// 12.1/1023 = Volts per bit = 0.011827957
        	// sensor val at 9v = 9/0.011827957 = 760.909090217
        	// float batteryV  = sensorValue * 0.011827957;
        	long batteryValue = sensorValue * 100L;
        	int batteryPcnt = batteryValue / 761;
        	gw.sendBatteryLevel((batteryPcnt &gt; 100 ? 100 : batteryPcnt)); // this allows for batteries that have slightly over 9v
      
        	Serial.print("Batt %:");
        	Serial.println(batteryPcnt);
        }

        if ( minuteCount &lt; 5 )  // sleep a bit
	        gw.sleep(SLEEP_MINUTE); //while pressure sampling
        else
	        gw.sleep(SLEEP_FIVE_MINUTES); 
        
}

int SamplePressure() {
	// This is a simplification of Algorithm found here to same memory
	// http://www.freescale.com/files/sensors/doc/app_note/AN3914.pdf

	pressure = bmp.readSealevelPressure(60) / 100; // 60 meters above sealevel

	if (minuteCount &gt; 9) { // we are going to test pressure change every 30 min (5*1min + 5*5min)
		lastPressureAvg = pressureAvg;
		minuteCount = 0;
	}

	if (minuteCount &lt; 5) {
		pressureSamples[minuteCount] = pressure; // Collect 5 minutes of samples every 30 min
                Serial.print("  Sample(");
                Serial.print(minuteCount);
                Serial.print(") = ");
                Serial.println(pressure);
        }

	if (minuteCount == 4) { // the 5th minute
		// Avg pressure in first 5 min, value averaged from 0 to 5 min.
		pressureAvg = ((pressureSamples[0] + pressureSamples[1]
				+ pressureSamples[2] + pressureSamples[3] + pressureSamples[4])
				/ 5);
		float change = pressureAvg - lastPressureAvg;
		dP_dt = (((65.0 / 1023.0) * change) / 0.5); // divide by 0.5 as this is the difference in time from last sample 0.5 hours
		Serial.print("dP_dt = ");
		Serial.println(dP_dt);
	}

	minuteCount++;

	if (lastPressureAvg &lt; 0) // no previous pressure sample.
		return 5; // Unknown, more time needed
	else if (dP_dt &lt; (-0.25))
		return 4; // Quickly falling LP, Thunderstorm, not stable
	else if (dP_dt &gt; 0.25)
		return 3; // Quickly rising HP, not stable weather
	else if ((dP_dt &gt; (-0.25)) &amp;&amp; (dP_dt &lt; (-0.05)))
		return 2; // Slowly falling Low Pressure System, stable rainy weather
	else if ((dP_dt &gt; 0.05) &amp;&amp; (dP_dt &lt; 0.25))
		return 1; // Slowly rising HP stable good weather
	else if ((dP_dt &gt; (-0.05)) &amp;&amp; (dP_dt &lt; 0.05))
		return 0; // Stable weather
	else
		return 5; // Unknown

}

</code></pre>
]]></description><link>https://forum.mysensors.org/topic/1080/mini-weather-station</link><generator>RSS for Node</generator><lastBuildDate>Sat, 05 Sep 2026 08:19:55 GMT</lastBuildDate><atom:link href="https://forum.mysensors.org/topic/1080.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 07 Mar 2015 06:01:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Mini Weather Station on Wed, 17 May 2017 23:41:35 GMT]]></title><description><![CDATA[<p dir="auto">Great device. Why not use a solar power station, like in a solar garden light. Not very good at power equations. What else you going to hook to this? rain gauge, wind speed .... Thanks</p>
]]></description><link>https://forum.mysensors.org/post/66999</link><guid isPermaLink="true">https://forum.mysensors.org/post/66999</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Wed, 17 May 2017 23:41:35 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Wed, 17 May 2017 20:44:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gohan" aria-label="Profile: gohan">@<bdi>gohan</bdi></a> I have a bunch of HW</p>
]]></description><link>https://forum.mysensors.org/post/66994</link><guid isPermaLink="true">https://forum.mysensors.org/post/66994</guid><dc:creator><![CDATA[mpp]]></dc:creator><pubDate>Wed, 17 May 2017 20:44:07 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Wed, 17 May 2017 20:40:32 GMT]]></title><description><![CDATA[<p dir="auto">it depends if you want the high power version or use the standard rfm69w at 17dBm and you will be fine to use it down to 1.8V (of course it will work also a little over 3.3V too)</p>
]]></description><link>https://forum.mysensors.org/post/66993</link><guid isPermaLink="true">https://forum.mysensors.org/post/66993</guid><dc:creator><![CDATA[gohan]]></dc:creator><pubDate>Wed, 17 May 2017 20:40:32 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Wed, 17 May 2017 20:33:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gohan" aria-label="Profile: gohan">@<bdi>gohan</bdi></a> so I'd need a 3.6v battery, I'm considering the BME280 or the HTU21d sensor.</p>
]]></description><link>https://forum.mysensors.org/post/66992</link><guid isPermaLink="true">https://forum.mysensors.org/post/66992</guid><dc:creator><![CDATA[mpp]]></dc:creator><pubDate>Wed, 17 May 2017 20:33:01 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Wed, 17 May 2017 20:26:33 GMT]]></title><description><![CDATA[<p dir="auto">Supply voltage for rfm69 is 1.8V-2.4V 17dBm or 2.4V- 3.6V 20dBm (from datasheet)</p>
]]></description><link>https://forum.mysensors.org/post/66990</link><guid isPermaLink="true">https://forum.mysensors.org/post/66990</guid><dc:creator><![CDATA[gohan]]></dc:creator><pubDate>Wed, 17 May 2017 20:26:33 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Wed, 17 May 2017 20:25:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mpp" aria-label="Profile: mpp">@<bdi>mpp</bdi></a> yes it does.<br />
But it's using much more power in TX mode so you need good reserve capacitors and also to minimize the sending time. For that it's better to run at 8MHz with the RFM.</p>
]]></description><link>https://forum.mysensors.org/post/66989</link><guid isPermaLink="true">https://forum.mysensors.org/post/66989</guid><dc:creator><![CDATA[Nca78]]></dc:creator><pubDate>Wed, 17 May 2017 20:25:48 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Wed, 17 May 2017 20:10:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nca78" aria-label="Profile: Nca78">@<bdi>Nca78</bdi></a> would this setup work with the rfm69 radio?</p>
]]></description><link>https://forum.mysensors.org/post/66987</link><guid isPermaLink="true">https://forum.mysensors.org/post/66987</guid><dc:creator><![CDATA[mpp]]></dc:creator><pubDate>Wed, 17 May 2017 20:10:39 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Sun, 09 Apr 2017 08:29:15 GMT]]></title><description><![CDATA[<p dir="auto">Yes NRF24 can run down to 1.9V. ATMega328 on the Arduino down to 2V. So problem is probably the BOD resetting below 2.7V.<br />
I advise to update bootloader to use a 1MHz version and remove BOD or set it to lower value. Using an arduino nano as a programmer (with ArduinoISP sketch) it is very easy.<br />
Then just use i2c sensors to allow low voltage and you just need to sleep all the time except a fraction of a second at every measurement. With that you get years of battery life.<br />
I use CR2032 for door and temp/hum/light sensors and my oldest sensor on my entrance door is nearly one year old and voltage of battery is less than 0.1V down, on a chinese low quality cell.</p>
]]></description><link>https://forum.mysensors.org/post/64223</link><guid isPermaLink="true">https://forum.mysensors.org/post/64223</guid><dc:creator><![CDATA[Nca78]]></dc:creator><pubDate>Sun, 09 Apr 2017 08:29:15 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Sun, 09 Apr 2017 08:18:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dbemowsk" aria-label="Profile: dbemowsk">@<bdi>dbemowsk</bdi></a> The 2xbattery builds that I built didn't have the voltage regulator as you suggest. It was just a range problem as the voltage dropped. Moving it closer to the gateway everything was still working.</p>
]]></description><link>https://forum.mysensors.org/post/64222</link><guid isPermaLink="true">https://forum.mysensors.org/post/64222</guid><dc:creator><![CDATA[jtm312]]></dc:creator><pubDate>Sun, 09 Apr 2017 08:18:45 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Sun, 09 Apr 2017 07:47:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jtm312" aria-label="Profile: jtm312">@<bdi>jtm312</bdi></a> I am using 2 AA's on my humidity sensor and that is working very well.  The radios are rated I believe down to 1.9 volts.  Using the regulator is going to give you more power drain on your batteries.  When using 2 AA batteries, there is no need for the regulator at all.  Many people say to disconnect it because it can still cause power drain.  In my project I just didn't connect to the RAW pin, thus the regulator is not being used.  So far I have not seen any issues with the regulator affecting anything.</p>
]]></description><link>https://forum.mysensors.org/post/64221</link><guid isPermaLink="true">https://forum.mysensors.org/post/64221</guid><dc:creator><![CDATA[dbemowsk]]></dc:creator><pubDate>Sun, 09 Apr 2017 07:47:13 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Sun, 09 Apr 2017 06:49:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dbemowsk" aria-label="Profile: dbemowsk">@<bdi>dbemowsk</bdi></a> I am using the 3.3V pro minis. It is the one pictured at the top of this thread. I started out by getting about a week. The big difference came after removing the LEDs, as they were using most of the power. Also sleeping most of the time.</p>
<p dir="auto">A good quality 9v also helped. Other humidity sensors can also cut the power drain.</p>
<p dir="auto">I have also built version using 2xAAA batteries, but I find that it doesn't take long before the voltages drops below the useful voltage for the radio and starts to cause a range problem. The next version I am planning on going back to using the onboard regulator with 4xAA batteries.</p>
]]></description><link>https://forum.mysensors.org/post/64219</link><guid isPermaLink="true">https://forum.mysensors.org/post/64219</guid><dc:creator><![CDATA[jtm312]]></dc:creator><pubDate>Sun, 09 Apr 2017 06:49:23 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Sun, 09 Apr 2017 05:17:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jtm312" aria-label="Profile: jtm312">@<bdi>jtm312</bdi></a> I don't recall exactly how much I was getting on mine, but I don't think it was that much.  Are you using 3.3 or 5 volt pro minis?</p>
]]></description><link>https://forum.mysensors.org/post/64215</link><guid isPermaLink="true">https://forum.mysensors.org/post/64215</guid><dc:creator><![CDATA[dbemowsk]]></dc:creator><pubDate>Sun, 09 Apr 2017 05:17:58 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Sun, 09 Apr 2017 05:13:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dbemowsk" aria-label="Profile: dbemowsk">@<bdi>dbemowsk</bdi></a> By cutting the LEDs off, I am getting 12 to 16 weeks.</p>
]]></description><link>https://forum.mysensors.org/post/64214</link><guid isPermaLink="true">https://forum.mysensors.org/post/64214</guid><dc:creator><![CDATA[jtm312]]></dc:creator><pubDate>Sun, 09 Apr 2017 05:13:12 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Sat, 08 Apr 2017 17:46:36 GMT]]></title><description><![CDATA[<p dir="auto">I had tried a 9 volt when I was building my temp/humidity sensor node and the battery didn't last for crap.  At that time I was using a DHT22 with a 5 volt pro mini.  I have since switched to an HDC1080 and a 3.3 volt pro mini with 2 AA batteries and it works GREAT.  Here is the project if anyone wants to look.<br />
<a href="https://forum.mysensors.org/topic/6485/hdc1080-battery-operated-temp-humidity-sensor-with-wall-box">https://forum.mysensors.org/topic/6485/hdc1080-battery-operated-temp-humidity-sensor-with-wall-box</a></p>
]]></description><link>https://forum.mysensors.org/post/64191</link><guid isPermaLink="true">https://forum.mysensors.org/post/64191</guid><dc:creator><![CDATA[dbemowsk]]></dc:creator><pubDate>Sat, 08 Apr 2017 17:46:36 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Sat, 08 Apr 2017 17:09:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dbemowsk" aria-label="Profile: dbemowsk">@<bdi>dbemowsk</bdi></a> said in <a href="/post/64184">Mini Weather Station</a>:</p>
<blockquote>
<p dir="auto">I am curious what kind of battery life you are getting with the 9 volt battery?  I tried a sensor with a 9 volt battery and the useful battery duration was less than ideal.</p>
</blockquote>
<p dir="auto">Typical capacity is around 550mAh for alcaline version. All extra voltage is wasted in the linear regulator so you end up with less than half the capacity of 2 AAA or about 20% of the capacity of 2 AA. Not a good choice imho, better switch to i2c sensors like si7021 or BME280 like MikeF did to have much lower power consumption and much lower voltage requirements and use 2 AAA. And the lower the voltage is, the lower the current consumption is for Arduino, radio and sensor so in the end instead of having 4 months of battery life you can get 2 or 3 years with 2 AAA.</p>
]]></description><link>https://forum.mysensors.org/post/64190</link><guid isPermaLink="true">https://forum.mysensors.org/post/64190</guid><dc:creator><![CDATA[Nca78]]></dc:creator><pubDate>Sat, 08 Apr 2017 17:09:40 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Sat, 08 Apr 2017 15:46:03 GMT]]></title><description><![CDATA[<p dir="auto">I am curious what kind of battery life you are getting with the 9 volt battery?  I tried a sensor with a 9 volt battery and the useful battery duration was less than ideal.</p>
]]></description><link>https://forum.mysensors.org/post/64184</link><guid isPermaLink="true">https://forum.mysensors.org/post/64184</guid><dc:creator><![CDATA[dbemowsk]]></dc:creator><pubDate>Sat, 08 Apr 2017 15:46:03 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Fri, 07 Apr 2017 04:28:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jtm312" aria-label="Profile: jtm312">@<bdi>jtm312</bdi></a><br />
Just try to connect Pro Mini 3volt to 9 volt GND and RAW - voltage regulator  very hot - I think 60-80 C</p>
]]></description><link>https://forum.mysensors.org/post/64114</link><guid isPermaLink="true">https://forum.mysensors.org/post/64114</guid><dc:creator><![CDATA[cadet]]></dc:creator><pubDate>Fri, 07 Apr 2017 04:28:07 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Fri, 07 Apr 2017 02:43:06 GMT]]></title><description><![CDATA[<p dir="auto">The pro minis have an onboard voltage regulator (raw input). The specs say that they are good for up to 12v for either the 5v or 3.3v version. I used a 3.3v version as it made the rest of the interface easier.</p>
]]></description><link>https://forum.mysensors.org/post/64111</link><guid isPermaLink="true">https://forum.mysensors.org/post/64111</guid><dc:creator><![CDATA[jtm312]]></dc:creator><pubDate>Fri, 07 Apr 2017 02:43:06 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Thu, 06 Apr 2017 21:27:26 GMT]]></title><description><![CDATA[<p dir="auto">You can use any voltage as far as you use the right voltage regulator</p>
]]></description><link>https://forum.mysensors.org/post/64106</link><guid isPermaLink="true">https://forum.mysensors.org/post/64106</guid><dc:creator><![CDATA[gohan]]></dc:creator><pubDate>Thu, 06 Apr 2017 21:27:26 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Thu, 06 Apr 2017 21:06:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bjacobse" aria-label="Profile: bjacobse">@<bdi>bjacobse</bdi></a><br />
Hi<br />
anybody compile code for this station for 2.0 Mysensors ?<br />
Share the code please.<br />
Pro mini used 5volt ver ?<br />
I can't power 3 volt ver from 9 volt ? Correct ?<br />
Thank you<br />
Andrey</p>
]]></description><link>https://forum.mysensors.org/post/64103</link><guid isPermaLink="true">https://forum.mysensors.org/post/64103</guid><dc:creator><![CDATA[cadet]]></dc:creator><pubDate>Thu, 06 Apr 2017 21:06:52 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Thu, 20 Oct 2016 10:08:40 GMT]]></title><description><![CDATA[<p dir="auto">If you at some point redesign the nice looking weather station, I recommend:<br />
1)To place  the battery in the top, to avoid battery corrosion<br />
2) Make a little hole in bottom for water condensation trip out hole</p>
]]></description><link>https://forum.mysensors.org/post/50731</link><guid isPermaLink="true">https://forum.mysensors.org/post/50731</guid><dc:creator><![CDATA[bjacobse]]></dc:creator><pubDate>Thu, 20 Oct 2016 10:08:40 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Thu, 20 Oct 2016 09:35:16 GMT]]></title><description><![CDATA[<p dir="auto">I've now uploaded an external view - see my earlier post.</p>
]]></description><link>https://forum.mysensors.org/post/50730</link><guid isPermaLink="true">https://forum.mysensors.org/post/50730</guid><dc:creator><![CDATA[MikeF]]></dc:creator><pubDate>Thu, 20 Oct 2016 09:35:16 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Thu, 20 Oct 2016 01:41:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/flopp" aria-label="Profile: flopp">@<bdi>flopp</bdi></a> I have added the FreeCAD file to the Thingiverse post so that people can make any changes they want.</p>
<p dir="auto"><a href="http://www.thingiverse.com/thing:704715" rel="nofollow ugc">http://www.thingiverse.com/thing:704715</a></p>
]]></description><link>https://forum.mysensors.org/post/50696</link><guid isPermaLink="true">https://forum.mysensors.org/post/50696</guid><dc:creator><![CDATA[jtm312]]></dc:creator><pubDate>Thu, 20 Oct 2016 01:41:42 GMT</pubDate></item><item><title><![CDATA[Reply to Mini Weather Station on Wed, 19 Oct 2016 12:06:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/korttoma" aria-label="Profile: korttoma">@<bdi>korttoma</bdi></a> said:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/flopp" aria-label="Profile: flopp">@<bdi>flopp</bdi></a> There is a link in the first post</p>
</blockquote>
<p dir="auto">Thank you, I must have missed it 🙀</p>
]]></description><link>https://forum.mysensors.org/post/50652</link><guid isPermaLink="true">https://forum.mysensors.org/post/50652</guid><dc:creator><![CDATA[flopp]]></dc:creator><pubDate>Wed, 19 Oct 2016 12:06:32 GMT</pubDate></item></channel></rss>