Flex Sensor 2.2 inch, Analog, for robotic glove
zoom_out_map
chevron_left chevron_right

Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.

The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.

The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.

New

Flex Sensor 2.2 inch, Analog, for robotic glove

2.2 inch flexible analog sensor for measuring bending degree in robotic gloves and wearable projects, changes its resistance from 25K ohm straight to 45K-125K ohm when bent for easy reading with ADC. Durable, over 1 million cycles, operates between -35 and +80°C, 2-pin interface with 0.1 pitch, compatible with Arduino, ESP32, STM32.

143.26 RON Tax included

118.40 RON Tax excluded

No reviews yet
1-2 zile
check In Stoc

Shipping by Thursday 27 August

Close

This product has a warranty of 2 years.

INTERNATIONAL DELIVERY
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
FAST DISPATCH 24H
We ship from our stock within 24H
LOYALTY POINTS
You earn points with every order, worth 5%.

The 2.2" flex sensor is a compact analog device designed to detect the degree of mechanical bending of an object or surface.

It works on the principle of electrical resistance variation: in a straight state, the resistance is approximately 25K ohms, and as the sensor bends, the resistance gradually increases, reaching between 45K and 125K ohms depending on the bending angle. This variation can be read and interpreted by a microcontroller.

The sensor supports over 1 million bending cycles, has a nominal power of 0.5W and a peak power of 1W, and operates within a wide temperature range from -35 to +80 degrees Celsius.

The physical dimensions are 73.66 x 6.35 mm, with a 2-Pin interface spaced 0.1" apart. Compatible with Arduino (Uno, Nano, Mega), STM32, ESP32, and any platform with an analog input.

 

Specifications:

Active length: 5.6 cm (2.2")

Total dimensions: 73.66 x 6.35 mm

Straight state resistance: 25K ohms

Resistance tolerance: 30%

Bending resistance: 45K - 125K ohms

Nominal power: 0.5W

Peak power: 1W

Lifetime: >1,000,000 bending cycles

Operating temperature: -35 to +80 degrees Celsius

Interface: 2-Pin, 0.1" pitch

Compatibility: Arduino, STM32, ESP32, any platform with ADC

 

Usage:

Connect one of the pins to the power supply voltage (3.3V or 5V, depending on the platform).

Connect the other pin to an analog pin of the microcontroller (e.g., A0 on Arduino).

Add a pull-down resistor between the analog pin and GND (recommended value: 10K - 47K ohms) to form a voltage divider.

Read the analog value in your code and map it to a desired angle or degree of curvature.

Mount the sensor on the surface or joint you want to monitor, ensuring that bending occurs along the sensor's active axis (lengthwise, not widthwise).

Calibrate the minimum and maximum values according to your application (robotic glove, joint, etc.).

 

Arduino Example:

Note: The sensor does not have fixed polarity. The typical circuit is a voltage divider: VCC - Sensor - Node (ADC) - Pull-down resistor - GND.

88275

Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.

Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.

Avertismente generale de siguranta:

Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.

Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.

Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.

Nu lasati produsul alimentat nesupravegheat in timpul testelor.

Produsul nu este jucarie si nu este destinat copiilor.

Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.

Identificare produs:

Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.

Producator / Importator / Distribuitor:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Website: www.sigmanortec.ro

Persoana responsabila in UE:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Documentatie si siguranta:

Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].

// Flex Sensor Test - Arduino

// Connect: VCC -> 5V, Sensor -> A0 with 10K pull-down resistor to GND

const int flexPin = A0;

void setup() {

  Serial.begin(9600);

}

void loop() {

  int rawValue = analogRead(flexPin);

  float voltage = rawValue * (5.0 / 1023.0);

  // Map raw value to approximate bend angle (calibrate as needed)

  int angle = map(rawValue, 300, 700, 0, 90);

  Serial.print("Raw: ");

  Serial.print(rawValue);

  Serial.print(" | Voltage: ");

  Serial.print(voltage, 2);

  Serial.print("V | Approx angle: ");

  Serial.print(angle);

  Serial.println(" deg");

  delay(200);

}