Disponibilité : Espaces Prototypage et Greenlab
Le capteur d'humidité Grove est un capteur qui mesure la teneur en humidité dans le sol (terre).
Il fonctionne en 3V3 et en 5V.
Il nécessite un port analogique.
// Test code for Grove - Moisture Sensor int sensorPin = A0; // select the input pin for the potentiometer int sensorValue = 0; // variable to store the value coming from the sensor7 void setup() { // declare the ledPin as an OUTPUT: Serial.begin(9600); } void loop() { // read the value from the sensor: sensorValue = analogRead(sensorPin); Serial.print("sensor = " ); Serial.println(sensorValue); delay(1000); }