I am using Rev 2.2 of the hardware for this soil moisture sensor. The wiki and the sample source code, does not mention how to calculate relative humidity of the soil from reading the soil moisture sensor.
Can you please provide how to get a relative humidity value given the values returned by reading the PIN_SOIL (I get values in the 565 area at 22.5 deg celcius just after dousing the soil with water).
Perhaps an update to the sample source code and wiki would help. The only values shown on the wiki are for the rev 1 soil sensor showing 640-860.
The information is inconsistent with the results I am seeing.
I see a low number on the soil moisture sensor that fluctuates up and down between 420 and 460 when the sensor is completely immersed in water for 24 hours.
When it was outside of the water and dry, it stabilized at 700 reliably without any fluctuations.
My three questions are:
is the soil sensor already returning a “relative humidity” value another NOT just returning a moisture value? BTW, when I say relative humidity, I mean a value that is calculated based on the current temperature.
If I need to calculate the relative humidity from the soil moisture sensor, could you please tell me how to do that based on the 420 - 700 range of values? … what is the formula?
Thanks to arduino developers for great tools.
You made nice device but i have some suggestions for power management. If you include 3.3V voltage regulator and 3.7V battery the readings will be more stable for longer period. Can you please share schematic file and components list for v2.2? There is only v1.0 and v2.1 available on GitHub page of project. Thank you!
The schematic v2.1 is same with v2.2. Do you have any 3.3V voltage regulator recommend for this sensor? I think it will consume lower current when ESP8266 go to sleep without regulator.
You are right, but accurate reading are more important i think. Then you have only power capacity problem instead of two problems a power capacity and an accuracy, I think.
Bytheway the AP2112k 3.3V regulator in ESP8266 THING by Sparkfun does really good job I think. It’s Quiescent Current: 55μA (Typ.) and Standby Current: 0.01μA (Typ.).
Here is power supply part of schematics for ESP8266 THING by Sparkfun (AP2112k on a right): https://snag.gy/kAN3zH.jpg
Thank you! Seems AP2112k will be good friend with ESP8266. I will check the datasheet of AP2112k.
For accuracy of sensor value, we added a switch (sn74lvc1g3157) to measure the battery level. ESP8266 has only one ADC pin. Leave the pin to float to measure battery level. It default connect to the pin of sensor.
So we can calculate the relative soil moisture value that depend the battery voltage. But we haven’t finish the codes.