Wish List 0

T30 Liquid Level Optical Sensor

Rs. 738.00 Rs. 842.00

  • Product Code: SEN-LEVEL
  • SKU -
  • Availability: In Stock
  • Price in reward points: 3
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
1. Liquid level sensor is using infrared optical principle, the detection of liquid level, liquid level signal through the optical transmission, conversion to electrical signals for output, voltage signal collected by the sensor for level discrimination, the sensor has the advantages of compact design, small volume, waterproof, cylindrical shape square and drilling installation; installation mode diversification can be superimposed. Under the device, lateral and oblique to the installation, sensor head smooth, easy to clean, and the accuracy is better to the float type liquid level switch, controllable accuracy within 0.5mm, and existing float type liquid level switch accuracy is + 3.0mm; ray principle, no friction mechanical moving parts and greatly increased the life;

>> TECHNICAL PARAM TIERS:
   -Working voltage                    :DC5V[special requirements can be changed to 12V/24V]
   -Working current                    :<10MA
   -Output mode                         :analog output 0-4.5V
   -Output mode two                 :high / low level signal output
   -Response time                      :<500ms
   -Insulation resistance            :100M
   -Working temperature           :-30~80
   -Working humidity                 :0-100%RH
   -Waterproof characteristics  :all sealed waterproof design
   -Installation                             :M15*12 round hole
   -Lead length                            :0.5 meters [default]

>> APPLICATION RANGE:
   -Water dispenser, water purifier, air conditioning fan, humidifier, air conditioning fan, steam class and other electrical products that require water level control and protection, as well as industrial field control level detection;

>> Design considerations:
    -Liquid level sensor acquisition circuit design, circuit and software control should pay attention to,
-the use of liquid level switch is not simple to use high and low potential to judge. For example: the MCU I/O port, voltage greater than   and 0.7VDD is high or low is uncertain. So we have to use the A/D port to achieve the normal operation of the level switch. After    sampling the voltage data, the data is analyzed. Every 0 seconds sampling time, 10 consecutive sampling voltage is greater than 0.15V,   that is not water, 10 consecutive sampling voltage is less than 0.15V, it is a water, this way can solve the steam environment, at the same time scale of the problem is resolved; at the same time and we must remember: the tail of the level switch must be dry, do not allow the steam channeling to switch inside, otherwise it will fail. To use waterproof type.

SPECIFICATIONS:

  Working voltage                     :DC5V[special requirements can be changed to 12V/24V]

  Working current                     :<10MA

  Output mode                          :analog output 0-4.5V

  Output mode two                  :high / low level signal output

  Response time                        :<500ms

  Insulation resistance             :100M

  Working temperature           :-30~80

  Working humidity                  :0-100%RH

   Waterproof characteristics :all sealed waterproof design

  Installation                              :M15*12 round hole

  Lead length                              :0.5 meters [default]

  Weight                                      :30g

  Size                                           :30mmx20mmx12mm

OVERVIEW:

  Working voltage                         :DC5V[special requirements can be changed to 12V/24V]

  Working current                         :<10MA

  Output mode                             :analog output 0-4.5V

  Output mode two                      :high / low level signal output

  Response time                           :<500ms

  Insulation resistance                :100M

 Working temperature               :-30~80

 Working humidity                      :0-100%RH

 Waterproof characteristics      :all sealed waterproof design

 Installation                                  :M15x12 round hole

 Lead length                                :0.5 meters [default]

 Weight                                         :30g

 Size                                              :30mm*20mm*12mm

PACKAGE INCLUDES:

1 PCS x T30 Liquid Level Optical Sensor


//SOURCE CODE TAKEN FORM BELOW LINK

//https://theorycircuit.com/sst-liquid-level-sensor-arduino/

// Liquid level detection using an SST sensor

//

// When a liquid touches the tip of the sensor,

// an LED at pin 13 turns on.

// 

// Hardware:

//     Sensor    | Arduino

//  -------------|---------

//    Vs (RED)   |    5V

//   Out (GREEN) |   pin 7

//   GND (BLUE)  |    GND


// Pins

const int LIQUID_SENSOR_PIN = 7;

const int LED_PIN = 13;


void setup() { 

  pinMode(LIQUID_SENSOR_PIN, INPUT);

  pinMode(LED_PIN, OUTPUT);

  digitalWrite(LED_PIN, LOW);

}


void loop() {


  // Read sensor. If liquid touches the tip, the sensor will 

  // read 0V. Turn on LED if liquid is present.

  int isDry = digitalRead(LIQUID_SENSOR_PIN);

  if ( isDry ) {

    digitalWrite(LED_PIN, LOW);

  } else {

    digitalWrite(LED_PIN, HIGH);

  }


  delay(200);

}

15 days

Write a review

Please login or register to review