top of page
Search

Water Sensor with Arduino Nano

  • Alexa F.
  • Aug 2, 2018
  • 1 min read

SOURCE CODE:

const int waterSens = A0; //define water sensor and set to pin A0 const int led = 9; //define led and set to pin 9 int sensorVal;//create a sensor value variable

void setup() { Serial.begin(9600);//begin the serial monitor pinMode(led, OUTPUT);//set the led as an output

}

void loop() { int sensorVal = analogRead(waterSens); //read the water sensor data

if(sensorVal > 200){//if the sensor senses water digitalWrite(led, HIGH);//turn the led on } else{ if //it doesn't digitalWrite(led, LOW);//turn the led off }

Serial.println(sensorVal);//print the data to the serial monitor

}


 
 
 
Single post: Blog_Single_Post_Widget

Address

Fanwood, NJ 07023, USA

Contact

©2017 by Robotic Nation. Proudly created with Wix.com

bottom of page