> **Source:** Core Electronics is an Australian maker-electronics retailer and manufacturer based in Newcastle, NSW, run by a team of makers and educators. We design and manufacture our own product lines (PiicoDev, CE originals) and are official retailers for iconic maker and industrial brands including Raspberry Pi, Arduino, Adafruit, SparkFun and DFRobot. Orders ship Australia-wide from our Newcastle warehouse. Prices are in AUD and include GST. Pricing, stock and dispatch on this page are generated from the store's live catalog. Full machine-readable index: https://core-electronics.com.au/llms.txt

# 12" eTape Liquid Level Sensor + extras

**Type:** Product page · **SKU:** ADA464 · **Brand:** [Adafruit](https://core-electronics.com.au/brands/adafruit-australia)
**Page:** https://core-electronics.com.au/12-etape-liquid-level-sensor-extras.html ([markdown](https://core-electronics.com.au/12-etape-liquid-level-sensor-extras.html.md))

The 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...

## Pricing

- **Price:** $74.20 (inc GST) — $67.45 AUD, exc GST
- **Quantity discounts:** 10+ $65.43 (exc GST) · 50+ $64.08 (exc GST)

## Availability & dispatch

- In stock, ships same business day if ordered before 2PM (Australia/Sydney).
- We can dispatch 1 today, and up to 49 more in 8–12 days.

## How to buy

- **Build a cart:** compose `https://core-electronics.com.au/cart/link?items=ADA464:1` (comma-separated SKU:qty pairs) and share the link. Opening it shows a confirmation page with live pricing and stock before anything is added to the cart.
- **Verify the cart first:** fetch `https://core-electronics.com.au/cart/link/ADA464:1.md` for live line prices (inc & exc GST, quantity discounts applied), stock and dispatch estimates, and totals. Append `/to/{AU-postcode}` (or `/to/{country-code}:{postcode}`) before `.md` for delivery options and prices to that destination. Unknown, retired, or out-of-stock SKUs are flagged. (Query form `cart/link.md?items=...` also works but some robots parsers refuse query strings here.)
- **Checkout** is completed on-site and includes a captcha at the payment step. Share the cart link; checkout takes it from there.
- **Search the catalogue:** `https://core-electronics.com.au/search/{query}.md` (URL-encode the query; pages 2-3 at `search/{query}/{page}.md`; `search.md?q=` also works)
- **Payment methods, purchase orders, policies and contact details:** https://core-electronics.com.au/llms.txt
## Description

The 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. 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, Adafruit haven't seen anything else that is affordable and accurate for measuring liquid level. This sensor seems like it would be a handy addition to an hydroponics, aquarium, fountain or pool controller, or perhaps measuring a rain tube. This particular sensor is the 12" model, **They also include a 4-pin connector and 560 ohm resistor**. The connector is so you don't have to solder directly to the delicate pins: instead, just solder to the connector and plug it onto the sensor. 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.

## Technical Details

- Sensor Length: 14.1" (358 mm)
- Width: 1.0" (25.4mm)
- Thickness: 0.015" (0.208 mm)
- Resistance Gradient: 150&amp; / inch (59&amp; / cm), ± 10%
- Active Sensor Length: 12.6" (320.7 mm)
- Substrate: Polyethylene Terephthalate (PET)
- Sensor Output: 2250&amp; empty, 400&amp; full, ± 10%
- Actuation Depth: Nominal 1 inch (25.4 mm)
- Resolution: 0.01 inch (0.25 mm)
- Temperature Range: 15°F - 140°F (-9°C - 60°C)
 
Downloads:

- [eTape Liquid Level Sensor Datasheet](https://core-electronics.com.au/attachments/localcontent/eTapeDatasheet12110215TC-12_040213_233252efb6a.pdf)
- [eTape Liquid Level Sensor App note](https://core-electronics.com.au/attachments/localcontent/eTapeApp_5245212d15d.pdf)
 
Adafruit don't have a detailed tutorial for this sensor but it acts very much like a thermistor so they 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.

## Images

- [Product image 1](https://core-electronics.com.au/media/catalog/product/4/6/464-00.jpg)
