Skip to content

Small LoRa based Weather station. The weather station contains a temperature sensor, air pressure sensor and humidity sensor. The data is read out and sent to Cayenne Mydevices and Weather Underground using LoRa and The Things Network.

License

henri98/LoRaWAN-Weather-Station

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LoRaWanWeatherStation

Introduction

This is an example of a nice LoRa application. The weather station contains a temperature sensor, air pressure sensor and humidity sensor. The data is read out and sent to Cayenne Mydevices and Weather Underground using LoRa and The Things Network.

file
file

The Hardware

For this project I used the following hardware:

The Wiring

The wiring is based on the scheme of this story: https://www.thethingsnetwork.org/labs/story/build-the-cheapest-possible-node-yourself

Follow the instrucitons of BUILD THE CHEAPEST POSSIBLE NODE YOURSELF to add the RFM95W to the Arduino Pro Mini. If successful, add the sensors as shown in the scheme above. 

Finally, solder a 86 millimetre wire to the RFM95W antenna pin to increase the range.

The Casing

To place the weather station somewhere, I drew a case and printed it with the 3d printer. 

The models can be found on Thingiverse. Of course you can of course make your own variant. 

https://www.thingiverse.com/thing:2594618

The Software

The code I have used can be found on GitHub: https://github.com/henri98/LoRaWanWeatherStation 

I used Atom with PlatformIO to realize this project, so this is a PlatformIO project.

I used the folowing libarys:


Weather Underground

To send data to Weather underground, create an HTTP integration in the Console of The Things Network.  The data will be sent to the URL with a POST or a GET.  The following script captures the data and sends it to Weather Underground. Register your own Personal Weather Station on https://www.wunderground.com/personal-weather-station/signup 

<?php
        echo time();
    file_put_contents('json/post'.time().'.json', file_get_contents('php://input'));
    $json = file_get_contents('php://input');
    $data = json_decode($json);

    // take the data out of the json
    $temperature_1 = $data-&gt;payload_fields-&gt;temperature_1;
    $barometric_pressure_2 = $data-&gt;payload_fields-&gt;barometric_pressure_2;
    $relative_humidity_3 = $data-&gt;payload_fields-&gt;relative_humidity_3;

    // tempc to tempf
    $tempf = ($temperature_1 * 9/5) + 32;

    // pressure 
    $pressure = $barometric_pressure_2/33.863886666667;<br>

    if( isset($pressure) &amp;&amp; !empty($pressure) &amp;&amp; isset($tempf) &amp;&amp; !empty($tempf) &amp;&amp; isset($relative_humidity_3) &amp;&amp; !empty($relative_humidity_3)){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>   file_get_contents("<a href="https://rtupdate.wunderground.com/weatherstation/updateweatherstation.php?ID=XXXXXXX&amp;PASSWORD=XXXXXXXX&amp;dateutc=now&amp;tempf=" rel="nofollow" target="_blank">https://rtupdate.wunderground.com/weatherstation/updateweatherstation.php?ID=XXXXXXX&amp;PASSWORD=XXXXXXXX&amp;dateutc=now&amp;tempf=</a>" . $tempf . "&amp;humidity=" . $relative_humidity_3 . "&amp;baromin=" . $pressure);
    }

About

Small LoRa based Weather station. The weather station contains a temperature sensor, air pressure sensor and humidity sensor. The data is read out and sent to Cayenne Mydevices and Weather Underground using LoRa and The Things Network.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages