Build An Hygrometer Using Arduino

I am building an automated irrigation system for my vegetable patch. This will be a system that monitors the soil moisture level and then turns on a pump to send water to my garden according to the detected moisture level.

The water is coming from our rainwater tank, there is also an overflow on the tank that I’ve redirected to the garden (both the vegetable and ornamental gardens) so that water isn’t just sluiced off into my neighbors property. It’s been doing that since before we bought the property.

Arduino HygrometerThis instructable is about one fairly simple part of the project, the soil moisture monitor.

For this instructable, you’ll need:

  • 1 x Hygrometer (I bought mine from eBay)
  • 1 x Arduino (I’m using a UNO)
  • 3 x LED (Red, Green, Blue)
  • 3 x 220 ohm
  • 1 x 10k ohm resistor
  • jumper wires

Step 1: Wire it up

There are three bits that are important in this project.

Connect the Hygrometer to Analog 0 (A0) on the Arduino, it doesn’t matter which side of the Hygrometer is connected to A0.

This connection also passes through the 10k Ohm resistor to 5V (we are splitting the load). It is the difference in load that the Arduino will detect on A0.

The other pin on the Hygrometer connects to GND on the Arduino.

If that’s as far as you go … you’d be done, of course you wouldn’t be able to see any Blinky lights … but that’s OK.

If you want to have a visual monitor of the moisture level, then you’ll be wanting some LED.

I’ve used pins 13 (RED), 12 (GREEN) and 11 (BLUE) in my sketch, you can use others if you want … I won’t oppress you.

Connect Pin 13 to the anode of the red LED (long leg)

Connect a 220 ohm resistor between the red LED cathode (short leg) and to GND

Connect Pin 12 to the anode of the green LED (long leg)

Connect a 220 ohm resistor between the green LED cathode (short leg) and to GND

Connect Pin 11 to the anode of the blue LED (long leg)
Connect a 220 ohm resistor between the blue LED cathode (short leg) and to GND

That’s it … you’re all wired up.

Arduino Hygrometer SchematicStep 2: Arduino Sketch

The guts of the sketch simply reads the value on A0, works out if the value falls within a predefined range (0 – 400 = Dry, 400 – 700 = Moist and 700 + = Wet).

It also turns the appropriate LED on and off according to the same range.

Because I have grand plans of connecting the device to a controller at some later stage, I’m also sending the output to Serial.

The entire sketch is very simple … even I can understand it 🙂

The video simply shows the monitor transitioning between states of Dry/Moist/Wet … with my ham fists in the action.

Oh, yeah … please excuse my colour blindness …

 

For more detail: Build An Hygrometer Using Arduino

 


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top