Water Level Sensor

From LinkSprite Playgound
Jump to: navigation, search

With this module, you could easily get water surface level. It is useful in the cases that you need warning if liquid in the holder is less than or over certain amount. More conducting surface of this module in the liquid will conduct more electronic charge.

Water Level Sensor.JPG

Parameters

•Work voltage: DC3-5V

•Work current: less than 20mA

•Sensor type: ADC

•Detection area: 40mm x 16mm

•Workmanship: FR4 double spray tin

•Working temperature:10℃-30℃

Simple Code

void setup(){

Serial.begin(9600);

}

void loop(){

Serial.print("Water level Sensor Value:");

Serial.println(analogRead(A5));

delay(100);

}