Connect a water sensor

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
  • Facebook
  • Twitter
  • Linkedin
  • Pinterest
This div height required for enabling the sticky sidebar
Ad Clicks : Ad Views : Ad Clicks : Ad Views :