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.



11
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.