Turbidity Monitoring

Description

        Guys, In this project we are going to monitor turbidity of water using Turbidity Sensor and the value of turbidity which can be shown in the serial monitor of Arduino Software. Okey, let's make it.

Components Required

 1. Arduino UNO    * 1 
 2. Turbidity Sensor Module    * 1 
 3. Jumper Wires  * 1 

Circuit Diagram

Program

void setup() 
 {
  // initialize serial communication at 9600 bits per second:
   Serial.begin(9600);
 }

  // the loop routine runs over and over again forever:
void loop() 
 {
   // read the input on analog pin 0:
   int sensorValue = analogRead(A0);
   // print out the value you read:
   Serial.println(sensorValue);
   delay(1);        // delay in between reads for stability
   }