Home Code Connect a water sensor

Connect a water sensor

by shedboy71

This water sensor is fairly easy to connect this to your Arduino, the requirements are simply VCC (5v), GND and then connect the SIG to one of the Analog pins. In our code example this will be Analog 0.

 

water sensor

water sensor

Code
[c]
int analogPin = 0;
int led = 13;
int val = 0;

void setup()
{
pinMode (led, OUTPUT);
Serial.begin (9600);
}

void loop()
{
val = analogRead(analogPin);
if (val > 600)
{
digitalWrite(led, HIGH);
}
else
{
digitalWrite(led, LOW);
}
Serial.println(val);
delay (100);
}
[/c]
Links

 

arduino water sensor at Amazon Uk

arduino water sensor at Amazon US

Share

You may also like