This Moisture Sensor can be used to detect the moisture of soil and thus to monitor if the plants in your garden needs some water.
Features
- Connection Mode: A(Analog)
- Supper long legs
Specification
- Power supply: 3.3v or 5v
- Output voltage signal: 0~4.2v
- Current: 35mA
Part List
- 1 X Crowtail- Moisture Sensor
- 1 X Crowtail 3 Pin Cable
Wiki & External links
Features
- Soil moisture sensor based on soil resistivity measurement
- Easy to use
- 2.0cmX8.0cm grove module
Specification
Item | Min | Typical | Max | Unit |
---|---|---|---|---|
Voltage | 3.3 | / | 5 | V |
Current | 0 | ~ | 35 | mA |
Sensor in dry soil | 0 | ~ | 300 | / |
Sensor in humid soil | 300 | ~ | 500 | / |
Sensor in water | 500 | ~ | 750 | / |
Application Ideas
- Botanical gardening
- Moisture sensoring
Usage
The following sketch demonstrates a simple application of sensing the moisture of the soil.
1.Connect this module to one of analog port A0 of Crowtail – Base Shield with the 3 pin Crowtail cable, and then insert the Sensor into the soil or place it anywhere you want.
2.Plug Crowtail – Base Shield into the Arduino/Crowduino and connnect Arduino to PC via a USB cable.
3.The hardware installation as shown below:
4.Copy and paste code below to a new Arduino sketch.
int sensorPin = A0; // select the input pin for the moisture Sensor int sensorValue = 0; // variable to store the value coming from the sensor void setup() { // declare the ledPin as an OUTPUT: Serial.begin(9600); } void loop() { // read the value from the sensor: sensorValue = analogRead(sensorPin); delay(1000); Serial.print("sensor = " ); Serial.println(sensorValue); }
5.The Result in different condition after open the serial monitor:
نقد و بررسیها
هیچ دیدگاهی برای این محصول نوشته نشده است.