Apa itu analog capacitive soil moisture sensor dan fungsinya

Capacitive Soil Moisture Sensor Kelembaban Tanah v1.2 , sensor analog ini digunakan untuk mengukur kelembaban tanah dan terbuat dari bahan anti karat.

This analog capacitive soil moisture sensor measures soil moisture levels by capacitive sensing, rather than resistive sensing like other types of moisture sensor. It is made of a corrosion resistant material giving it a long service life Insert it into soil and impress your friends with the real-time soil moisture data This module includes an on-board voltage regulator which gives it an operating voltage range of 3.3 ~ 5.5V

This sensor is 3-pin "Gravity" interface, which can be directly connected to the Gravity I/O expansion shield

Specifications: ++ Operating Voltage: DC 3.3-5.5V ++ Output Voltage: DC 0-3.0V ++ Interface: PH2.0-3P

++ Size: 99x16mm / 3.9x0.63"

Features: ++ Supports 3-Pin Gravity Sensor interface

++ Analog output

Applications: ++ Garden plants ++ Moisture detection

++ Intelligent agriculture

Isi Paket:1x Capacitive Soil Moisture Sensor Kelembaban Tanah v1.2

1x Kabel Analog Sensor


Page 2

Perhatian !!

Mohon dibaca dengan teliti sebelum melakukan pembelian, jika telah membeli berarti kami anggap sudah membaca dan mengerti dengan catatan dari toko kami :

  1. Kami hanya melakukan pengiriman pada hari kerja saja (Senin s/d Sabtu) , tidak di hari Minggu atau hari libur nasional, pesanan yg masuk akan kami proses pada hari yang sama maksimal pukul 15.00 (Senin - Jumat) dan 12.00 (Sabtu), selebihnya akan diproses di hari kerja berikutnya.

  2. Untuk pengiriman pesanan di pagi hari, diprioritaskan untuk pesanan express JNE YES karena ada waktu maksimal pengiriman.

  3. Apabila produk yg diterima rusak, produk dapat dikembalikan dan akan ditukar dengan barang yg baru (model dan warna sama sesuai order), syaratnya beri photo / video cara pemasangan yang jelas menunjukkan rangkaian yang telah dibuat, maximal 1 hari setelah barang diterima (berdasarkan tracking kurir). Syarat ini berlaku jika setelah barang yg rusak kami terima tidak terdeteksi adanya kesalahan pemasangan, telah dimodifikasi atau perlakuan lain yang dapat menyebabkan kerusakan pada produk, jika terjadi maka hak untuk mendapatkan penggantian gugur dengan sendirinya.

  4. Apabila setelah dilakukan pengecekan barang memang rusak karena cacat produksi, pembeli menanggung ongkos kirim pengembalian barang dan penjual menanggung ongkos pengiriman kembali barang pengganti, jika tidak maka pembeli menanggung semua ongkos kirim.

  5. Kami tidak menerima retur jika barang yang dikirimkan telah benar sesuai dengan yang dipesan pada link.

  6. Untuk kelancaran dan kemudahan memproses pesanan, silahkan melakukan pesanan sesuai dengan link barang yang telah ada, contoh jika mengorder barang warna merah, silahkan order di warna merah karena beberapa barang terdapat perbedaan harga pada spesifikasi yang berbeda.

  7. Pembatalan transaksi dapat dilakukan jika transaksi tsb belum kami proses dengan langsung meng-Klik tombol pembatalan pada detail transaksi, tapi jika telah terproses maka tidak dapat dibatalkan dengan alasan apapun.

  8. Biasakan untuk membaca keterangan dan spesifikasi produk dengan lengkap, jika ada yang dirasakan kurang jelas dapat ditanyakan kepada kami.

  9. Kami persilahkan berkonsultasi untuk masalah pengiriman, aplikasi, cara pemasangan yang benar untuk menghindari hal yang dapat merugikan pembeli, namun karena kami juga manusia mohon kesabarannya jika dijawab sedikit lambat.

Produk Kami:

Semua produk yang kami jual adalah produk baru.

Komplain Barang Kurang:

Harap sertakan video unpacking.

Pengiriman dan Update Resi:

Semua order kami proses dan kirim secepatnya pada hari yang sama selama kurir masih buka.

Update resi akan kami lakukan secepatnya setelah laporan resi kami terima dari kurir.

Dropshipper:

Masukkan Nama dan No. HP anda di komentar order dan barang akan kami kirim atas nama anda.

Apa itu analog capacitive soil moisture sensor dan fungsinya

Introduction

Our soil moisture sensor measures soil mositure levels by capacitive sensing rather than resistive sensing like other sensors on the market. It is made of corrosion resistant material which gives it an excellent service life. Insert it in to the soil around your plants and impress your friends with real-time soil moisture data! This module includes an on-board voltage regulator which gives it an operating voltage range of 3.3 ~ 5.5V. It is perfect for low-voltage MCUs, both 3.3V and 5V. For compatibility with a Raspberry Pi it will need an ADC converter. This soil moisture sensor is compatible with our 3-pin "Gravity" interface, which can be directly connected to the Gravity I/O expansion shield.

Specification

  • Operating Voltage: 3.3 ~ 5.5 VDC
  • Output Voltage: 0 ~ 3.0VDC
  • Operating Current: 5mA
  • Interface: PH2.0-3P
  • Dimensions: 3.86 x 0.905 inches (L x W)
  • Weight: 15g

Tutorial

Requirements

Connection Diagram

Apa itu analog capacitive soil moisture sensor dan fungsinya

Calibration Code

void setup() { Serial.begin(9600); // open serial port, set the baud rate as 9600 bps } void loop() { int val; val = analogRead(0); //connect sensor to Analog 0 Serial.println(val); //print the value to serial port delay(100); }

Calibration

Calibration Range

Apa itu analog capacitive soil moisture sensor dan fungsinya
  1. Open the serial port monitor and set the baud rate to 9600

  2. Record the sensor value when the probe is exposed to the air as "Value 1". This is the boundary value of dry soil “Humidity: 0%RH”

  3. Take a cup of water and insert the probe into it no further than the red line in the diagram

  4. Record the sensor value when the probe is exposed to the water as "Value 2". This is the boundary value of moist soil “Humidity: 100%RH”

Apa itu analog capacitive soil moisture sensor dan fungsinya
The components on this board are NOT waterproof, do not expose to moisture further than the red line. (If you want to protect components from the elements, try using a length of wide heat shrink tubing around the upper-section of the board.) There is an inverse ratio between the sensor output value and soil moisture.

Section Settings

The final output value is affected by probe insertion depth and how tight the soil packed around it is. We regard "value_1" as dry soil and "value_2" as soaked soil. This is the sensor detection range. For example: Value_1 = 520; Value_2 = 260. The range will be divided into three sections: dry, wet, water. Their related values are:

  • Dry: (520 430]
  • Wet: (430 350]
  • Water: (350 260]

Test Code

/*************************************************** This example reads Capacitive Soil Moisture Sensor. Created 2015-10-21 By berinie Chen <> GNU Lesser General Public License. See <http://www.gnu.org/licenses/> for details. All above must be included in any redistribution ****************************************************/ /***********Notice and Trouble shooting*************** 1.Connection and Diagram can be found here: https://www.dfrobot.com/wiki/index.php?title=Capacitive_Soil_Moisture_Sensor_SKU:SEN0193 2.This code is tested on Arduino Uno. 3.Sensor is connect to Analog 0 port. ****************************************************/ const int AirValue = 520; //you need to replace this value with Value_1 const int WaterValue = 260; //you need to replace this value with Value_2 int intervals = (AirValue - WaterValue)/3; int soilMoistureValue = 0; void setup() { Serial.begin(9600); // open serial port, set the baud rate to 9600 bps } void loop() { soilMoistureValue = analogRead(A0); //put Sensor insert into soil if(soilMoistureValue > WaterValue && soilMoistureValue < (WaterValue + intervals)) { Serial.println("Very Wet"); } else if(soilMoistureValue > (WaterValue + intervals) && soilMoistureValue < (AirValue - intervals)) { Serial.println("Wet"); } else if(soilMoistureValue < AirValue && soilMoistureValue > (AirValue - intervals)) { Serial.println("Dry"); } delay(100); }

FAQ

There are no questions about this product yet.

For any questions/advice/cool ideas to share with us, please visit DFRobot Forum.

More

  • Share
    • Relative humidity to absolute humidity calculator

Apa itu analog capacitive soil moisture sensor dan fungsinya
Get Gravity: Analog Capacitive Soil Moisture Sensor- Corrosion Resistant from DFRobot Store or DFRobot Distributor.

Turn to the Top