Spécification:
- Tension de fonctionnement : CC 3.3V - 5V
- Signal de tension de sortie : 0 ~ 4,2 V
- Courant : 35 mA
- LED : indicateur de puissance (rouge) et indicateur de sortie de commutation numérique (vert)
- Taille : 60 x 20 x 5 mm 60 x 20 x 5mm
Définition des connecteurs:
- VCC externe 3,3 V-5 VCode:
Sample Code /* # Example code for the moisture sensor # Connect the sensor to the A0 (Analog 0) pin on the Arduino board # the sensor value description # 0 ~300 dry soil # 300~700 humid soil # 700~950 in water */ void setup(){ Serial.begin(57600); } void loop(){ Serial.print("Moisture Sensor Value:"); Serial.println(analogRead(0)); delay(100); }