welcome iCShop!     服務時間:週一 ~ 週五 9:00~12:00 / 13:00~17:00
減價222
液位感測器 with Plastic Casing【限量】
液位感測器 with Plastic Casing【限量】

液位感測器 with Plastic Casing【限量】

NT$ 2,9992,777


產品貨號

368031001092

品牌

原廠貨號

2656

數量

  庫存量:1

關鍵字

運送方式

7-11取貨付款 郵寄(單一運費) 宅配 宅配貨到付款 外島郵寄 順豐快遞 順豐快遞貨到付款



商品規格

DESCRIPTION

This eTape Liquid Level Sensor is a solid-state sensor with a resistive output that varies with the level of the fluid. It does away with clunky mechanical floats, and easily interfaces with electronic control systems. What separates this from our other eTape Liquid Sensor is the hard plastic jacket that makes it less susceptible to damage.

The eTape sensor's envelope is compressed by the hydrostatic pressure of the fluid in which it is immersed. This results in a change in resistance that corresponds to the distance from the top of the sensor to the surface of the fluid. The sensor's resistive output is inversely proportional to the height of the liquid: the lower the liquid level, the higher the output resistance; the higher the liquid level, the lower the output resistance.

This is a very unique sensor, we haven't seen anything else that is affordable and accurate for measuring liquid level. This particular sensor is the 12" model. It comes with a 3-pin JST connector.

Since the sensor is resistive, it is easy to read it using a microcontroller/Arduino ADC pin. Check the tutorials tab for a quick-start pointer.

Note: This product only comes with the plastic enclosed eTape Liquid Level Sensor.  In our demo, we set it up with an Adafruit Metro, a TB6612 Stepper Motor Driver Breakout Board, and an Automotive Gauge Stepper Motor.

 

TECHNICAL DETAILS

Dimensions:

    • 305mm x 29mm x 13mm / 12" x 1.14" x 0.51"
    • Weight: 56g
    • Sensor Output: 400-2000Ω ±20%
    • Ref. Resistance: 2000Ω ±20%
    • Actuation Depth: Nominal 25.4mm / 1"
    • Resistance Gradient: 60Ω/cm / 150Ω /inch
    • Power Rating: 0.5 Watts
    • Temperature Range: 15°F - 150°F / -9°C - 65°C
    • Standard eTape Datasheet

We don't have a detailed tutorial for this sensor but it acts very much like a thermistor so we suggest checking out that tutorial for background, and then following these instructions:

Connect pin #2 of the sensor to ground, then pin #3 to a 560 ohm resistor. The other side of the 560 ohm resistor to VCC (3.3V or 5V for example) to create a resistor divider. The ADC pin connects to the point between the resistor and sensor.

 

// the value of the 'other' resistor
#define SERIESRESISTOR 560   

// What pin to connect the sensor to
#define SENSORPIN A0

void setup(void) {
Serial.begin(9600);
}

void loop(void) {
float reading;

reading = analogRead(SENSORPIN);

Serial.print("Analog reading ");
Serial.println(reading);

// convert the value to resistance
reading = (1023 / reading)  - 1;
reading = SERIESRESISTOR / reading;
Serial.print("Sensor resistance ");
Serial.println(reading);

delay(1000);
}

 

Then look in the App Note for the conversion between resistance and liquid level.

出貨清單
  • 液位感測器 with Plastic Casing x 1