Description

Turbidity Sensor in Pakistan

The gravity Arduino turbidity sensor detects water quality by measuring the levels of turbidity. It uses light to detect postponed particles in water by measuring the light transmittance and scattering rate, which changes with the amount of total postponed solids (TSS) in water. As the TTS increases, the liquid turbidity level increases.  Turbidity arduino sensors are used to measure water quality in rivers and streams, waste water and overflow measurements, control arrangement for settle down ponds, remains transport research, and laboratory measurements. This liquid sensor provides analog and digital signal output modes. The beginning is adjustable when in digital signal mode. You can select the mode according to your MCU.

Specifications:

  1. Operating Voltage: 5V DC
  2. Operating Current: 40mA (MAX)
  3. Response Time  : <500ms
  4. Insulation Resistance: 100M (Min)
  5. Analog output: 0-4.5V
  6. Digital Output: High/Low level signal (you can adjust the threshold value by adjusting the potentiometer)
  7. Operating Temperature: 5℃~90℃
  8. Storage Temperature: -10℃~90℃
  9. Weight: 30g
  10. Adapter Dimensions: 38mm*28mm*10mm/1.5inches *1.1inches*0.4inches

Interface Description:

  1. “D/A” Output Signal Switch
    1. “A”: Analog Signal Output, the output value will decrease when in liquids with a high turbidity
    2. “D”: Digital Signal Output, high and low levels, which can be adjusted by the threshold potentiometer
  2. Threshold Potentiometer: you can change the trigger condition by adjusting the threshold potentiometer in digital signal mode.

Examples:

Here are two examples:
1.Analog output mode
2. uses the Digital output mode

Example 1

void setup() {
Serial.begin(9600); //Baud rate: 9600
}
void loop() {
int sensorValue = analogRead(A0);// read the input on analog pin 0:
float voltage = sensorValue * (5.0 / 1024.0); // Convert the analog reading (which goes from 0 – 1023) to a voltage (0 – 5V):
Serial.println(voltage); // print out the value you read:
delay(500);
}

 

Example 2

int ledPin = 13;                // Connect an LED on pin 13, or use the onboard one
int sensor_in = 2;                 // Connect turbidity sensor to Digital Pin 2

void setup(){
pinMode(ledPin, OUTPUT);      // Set ledPin to output mode
pinMode(sensor_in, INPUT);       //Set the turbidity sensor pin to input mode
}

void loop(){
if(digitalRead(sensor_in)==LOW){       //read sensor signal
digitalWrite(ledPin, HIGH);   // if sensor is LOW, then turn on
}else{
digitalWrite(ledPin, LOW);    // if sensor is HIGH, then turn off the led
}
}

This is a reference chart for the mapping from the output voltage to the NTU according to different temperature. e.g. If you leave the sensor in the pure water, that is NTU < 0.5, it should output “4.1±0.3V” when temperature is 10~50℃.

 

characteristic curve “Voltage —-Temperature

 

Package includes:

1 x Turbidity Sensor in Pakistan

An internal link is any link from one page on your website to another page on your website. Both your users and search engines use links to find content on your website. Your users use links to navigate through your site and to find the content they want to find. Search engines also use links to navigate your site. They won’t find a page if there are no links to it.
Internal
There are several types of internal links. In addition to links on your homepage, menu, post feed, etc, you can also add links within your content. We call those contextual links. Contextual links point your users to interesting and related content. Moreover, they allow search engines to find out what content on your site is related and to determine the value of that content. The more links an important page receives, the more important it will seem to search engines. Therefore, good internal links are crucial to your SEO. An internal link is any link from one page on your website to another page on your website. Both your users and search engines use links to find content on your website. Your users use links to navigate through your site and to find the content they want to find. Search engines also use links to navigate your s

Additional information

Weight 0.1 kg

Reviews

There are no reviews yet.

Be the first to review “Turbidity Sensor in Pakistan”

Your email address will not be published. Required fields are marked *

sixteen + one =