Recall & Review
beginner
What does a soil moisture sensor measure?
It measures the amount of water present in the soil, helping to know if the soil is dry or wet.
Click to reveal answer
beginner
How do you connect a soil moisture sensor to an Arduino?
Connect the sensor's power pin to 5V, ground pin to GND, and the analog output pin to one of Arduino's analog input pins (e.g., A0).
Click to reveal answer
beginner
What Arduino function reads the soil moisture sensor value?
Use analogRead(pin) where pin is the analog input connected to the sensor, e.g., analogRead(A0).
Click to reveal answer
intermediate
Why do soil moisture sensor readings vary between dry and wet soil?
Because water conducts electricity better than dry soil, so the sensor outputs a different voltage depending on moisture level.
Click to reveal answer
intermediate
How can you use soil moisture sensor data to water plants automatically?
By programming Arduino to turn on a water pump or valve when sensor reading shows soil is dry, and turn it off when soil is wet enough.
Click to reveal answer
Which Arduino pin type is used to read soil moisture sensor output?
✗ Incorrect
Soil moisture sensors output an analog voltage that varies with moisture, so Arduino reads it using an analog input pin.
What happens to the sensor reading when soil is very dry?
✗ Incorrect
Dry soil has less water, so sensor resistance is higher, resulting in a lower analog reading value.
Which Arduino function reads the sensor value?
✗ Incorrect
analogRead() reads voltage levels from analog pins, which is how soil moisture sensors output their data.
What is the typical voltage supply for a soil moisture sensor with Arduino?
✗ Incorrect
Most soil moisture sensors work well with 5V supply from Arduino.
How can you tell if soil moisture sensor is working correctly?
✗ Incorrect
A working sensor shows different readings depending on soil moisture level.
Explain how to connect and read data from a soil moisture sensor using Arduino.
Think about the sensor pins and Arduino analog input.
You got /4 concepts.
Describe how soil moisture sensor readings help automate plant watering.
Consider how sensor data triggers actions.
You got /4 concepts.
