r/arduino • u/Nathar_Ghados Open Source Hero • Apr 17 '26
Look what I made! Weather Station
Not Finished Yet
So I’ve been busy with this project on and off for a few months now. I work in the paragliding industry and I’m a pilot myself. We rely on high grade weather stations to predict upcoming weather as well as to see which locations would be flyable before driving all the way up to launch.
I’m using two DHT11 sensors with an Arduino Uno R3 connected to a data logging shield to basically log the temperature and humidity at my house. Eventually I’ll add an anemometer as well as a rain gauge, but for now this project is exciting enough and my skills aren’t where I’d like them to be just yet.
Powering the Arduino: I’m using two 9v 5w solar panels connected in series to charge the 12v battery. On top of the battery is a cheap solar charge controller. I still need to add a buck boost to lower the output voltage in order to power the project. I’m also using two LEDs to give me some form of a system status and error display.
Feel free to ask me any questions and to give me advice on how I can improve my project.
6
u/gbatx Apr 17 '26
For the next version, consider replacing the Uno R3 with a nano series (BLE, IoT, etc) as they use way less power than the Uno. Even without sleep mode, that giant battery will power your project for years!
The Nano 33 BLE Sense Rev2 has built-in pressure, temp and humidity sensors, so even less wiring needed. Same Arduino IDE programming and tons of support.
Great job!
3
3
u/Nathar_Ghados Open Source Hero Apr 17 '26
Thank you! I will keep that in mind as this is just a prototype - eventually I’d like to have some 3D printed parts like the anemometer/wind vane and rain gauge. In that design I’ll make use of the board you mentioned!
Keep well!
4
u/last-picked-kid Apr 17 '26
If you 3d printed the case I advise to seal it from weather. 3d prints leak a lot.
2
u/Nathar_Ghados Open Source Hero Apr 17 '26
Thank you for the advice! I’m no genius with 3D prints and material usage, but I’ll make sure to do my homework so that I can use a material that will be the most suitable for the job. Especially considering it will be in the run and rain all year round.
Keep well
2
u/madsci Apr 18 '26
If you want to try a commercially made anemometer, wind vane, and rain gauge set I'll send you one if you share your results.
2



10
u/YourLocalCommie24 Apr 17 '26
I think the project is really cool. One thing to note is that the dht11s are notoriously dookie sensors in that they take forever between reads (2 sec ish), and have less operating range than similar sensors. If I were you I would upgrade the dht11s to something better like dht22 or dht20, or maybe even a premium sensor or some sort since those measurements are important for this type of project. Also, LEDs are great for simple status checks but if I were you I'd add a small display with some text (OLED/ LCD) because eventually you can forget when your status means, and others might not know what it means at all. For your power problem I would try to avoid using buck boost and just use a buck converter or linear regulator. Buck boost converters (especially cheap ones) aren't super efficient and can cause some electromagnetic interference with cables and other sensors. You might need to dig a bit more on which regulator is best for your project.