ESP32 Solar Weather Station
ESP32 Solar Weather Station
by Tiobel
For my first IoT project I wanted to build a Weather regarding this microcontroller and how to upload the
Station and send the data to data.sparkfun.com. code using Arduino IDE.
Small correction, when I decided to open my account All the physic parameters are given by the BME280 s
in Sparkfun, they were not accepting more ensor. Also check the wiki page for some more info.
connections, so I choose another IoT data collector th
ingspeak.com. To turn the system completely "wireless" the power
necessary is provided by two 6V solar panels that
Continuing... can deliver 2W of power. The cells will be connected
in parallel. The energy produce is then be stored in a
The system will be placed on my balcony and will 3.7V Polymer Lithium Ion Battery with +/- 1000mAh
retrieve temperature, humidity and air pressure. The capacity.
microcontroller selected for this project is the FireBeet
le ESP32 IOT Microcontroller supplied by DFRobot. The Solar Lipo Charger module from DFRobot will be
responsible for the energy management.
Please check DFRobot wiki page for more info
For you to use my code, some changes are After your email is verified, you can go to Channels
necessary. and create a new channel. Add the variables that you
want to upload. For this project, Temperature,
The first one is defining your wifi network name and Humidity, and Pressure.
password. The second is getting an API Key from
Thingspeak.com. I will explain it below. Also you can Scroll down and press "Save Channel". After this you
define a new sleeping interval, if you wish so. can click in API Keys. And retrieve the the API write
key. Then add it in your code file.
Thingspeak.com
If you do not have a Thingspeak account, you will If everything is correct, your Weather Station can start
need to go to www.thingspeak.com and register sending data to your channel.
yourself.
As always in my projects I will to give room for future battery voltage. After some investigation and testing
improvements, this is not different. of some internal functions of the ESP32 nothing
worked. So probably I will add a voltage divider and
During the development, I start getting concern with connect it to an Analog Input and read directly the
the energy consumption of the system. I already voltage. Please let me know if you come up with a
place the ESP32 and BME280 to sleep and even so I better solution.
have a consumption of around 2mA!!! Being the
BME280 the big responsible for this, I will probably Please write me if you found any mistake or if you
need a switch to turn off completely the module have any suggestion/improvement or questions.
during sleeping mode. "Do not get bored, do something"
Haven't I seen exactly the same project somewhere else? Ok...nevertheless my comment on this
here too: Nice idea but in my optionion the DFRobot charger is problematic. It does not provide a
fixed, stabilised power but juts outputs the battery voltage which is in range 3.7 to 4.2 V. and even
more problematic: it does not provide a deep discharge protection, so the battery may be damaged
irreversibly when it is discharged too much. Only ready-to-use solution I know about is the one
from https://iot.halaser.de which includes both components, battery charging and deep discharge
protection.
Hello Mike,
If you saw it Hackster.io that its also mine, if you saw it elsewhere, then it was copied from one of
this two sites.
Regarding your comment you are right about the charger, but I used what I had, and since in my
projects there are always room for improvement, a voltage monitoring could be added and a
shutdown featuring also.
Best Regards,
Hugo Gomes
ESP32 Solar Weather Station: Page 6
Yes, it was hackster.io - I left a comment there too :-)
HI, it looks like you used fritzing, where did you find the dfrobot parts for fritzing? I would be very
much interested in using them. Thanks for the pointer.
Hello GeertV8,
Best Regards,
Hugo Gomes
Your project is neat. Some value able info for the people looking for the data collecting sites. For
the Voltage reading with the help of voltage divider is the way to go. Try to use 1% of resistance for
voltage divider. For power switch for BMP280, I would suggest to use a tiny MOSFET or bipolar
transistor. The base or gate of the transistor could be controlled by the ESP32 io pin.
Good Job
Hey! Good job on the weather station. I was thinking you could reduce the power consumption on
the DFRobot Gravity - I2C BME280 by removing the red led indicator. On the NodeMcu there is a
hack that can make it run on µA instead of ma. Maybe this would be of interest to you.
https://tinker.yeoman.com.au/2016/05/29/running-nodemcu-on-a-battery-esp8266-low-power-
consumption-revisited/.
That's a neat setup :) This would be really useful to have in the back yard.
Thanks Swansong, please tell me if you encounter any problems. Or if you have any
improvements