Soil Moisture For Ardunio
Rs. 32.00 Rs. 36.00
- Product Code: SEN-SOIL
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS:
Operating Voltage(VDC) :3.3 to 5
PCB Dimension :Approx.3cm x 1.5cm
Soil Probe Dimension :Approx. 6cm x 3cm
Cable Length :20 cm
Shipment Weight :0.105 kg
Shipment Dimensions :8 × 6 × 3 cm
OVERVIEW:
-Dual output mode, analog output more accurate
-A fixed bolt hole for easy installation
-With power indicator (red) and digital switching output indicator (green)
-Having LM393 compactor chip, stable.
-Operating Voltage: 3.3V~5V
-₹ 103.00 (inc GST)
-₹ 87.29 (+18% GST extra)
PACKAGE INCLUDES:
1 PCS x Soil Moisture For Arduino
//SOURCE CODE TAKEN FROM BELOW LINK
//https://create.arduino.cc/projecthub/electropeak/complete-guide-to-use-soil-moisture-sensor-w-examples-756b1f
/*
Soil Moisture Sensor
modified on 21 Feb 2019
by Saeed Hosseini @ Electropeak
https://electropeak.com/learn/
*/
#define SensorPin A0
float sensorValue = 0;
void setup() {
Serial.begin(9600);
}
void loop() {
for (int i = 0; i <= 100; i++)
{
sensorValue = sensorValue + analogRead(SensorPin);
delay(1);
}
sensorValue = sensorValue/100.0;
Serial.println(sensorValue);
delay(30);
}
15 DAYS