Force Sensor 5.08mm Circle

  • Force-sensitive resistor with 4 mm active sensing area
  • Resistance decreases with applied pressure (≈1 MΩ no load, ≈2.5 kΩ full load)
  • Breadboard-friendly 0.1″ pin spacing
  • Ultra-thin design (0.45 mm) and highly durable (up to 10 million actuations)
  • Easy to integrate and customizable size options
  • Cost-effective for various sensing applications
SKU: EK810 Category: Tag:

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

115,00 EGP

3 People watching this product now!

Payment Methods:

Description

This is a small force sensitive resistor. It has a 0.16″ (4 mm) diameter active sensing area. This FSR will vary its resistance depending on how much pressure is being applied to the sensing area. The harder the force, the lower the resistance. When no pressure is being applied to the FSR, its resistance will be larger than 1MΩ, with full pressure applied the resistance will be 2.5kΩ.

Two pins extend from the bottom of the sensor with 0.1″ pitch making it bread friendly.

These sensors are simple to set up and great for sensing pressure, but they aren’t incredibly accurate. Use them to sense if it’s being squeezed, but you may not want to use it as a scale.

Applications:
  1. Testing and Measurement Equipment
  2. Embedded Electronics
  3. OEM Development Kit
  4. Consumer Electronics
  5. Multimeter

Features:

  1. Easily customizable to a wide range of sizes
  2. Cost-effective
  3. Ultra-thin; 0.45 mm
  4. Robust; up to 10 million actuations
  5. Simple and easy to Integrate.

Package Includes:

1 x Force Sensor 5.08mm Circle

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
FSRLeg 1/Leg 2to board analog pin (divider) / one leg to 3.3-5V, other + fixed resistor to GND
📟
Force Sensor 5.08mm Circle (2)
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Force Sensor 5.08mm Circle (2) - Arduino Uno
Force Sensor 5.08mm Circle (2) - Arduino Nano
Force Sensor 5.08mm Circle (2) - Arduino Mega
Force Sensor 5.08mm Circle (2) - ESP32
Force Sensor 5.08mm Circle (2) - ESP8266
Force Sensor 5.08mm Circle (2) - STM32
Force Sensor 5.08mm Circle (2) - Raspberry Pi Pico
📄 File: force_sensor_5.08mm_circle_(2)_-_arduino_uno.inoArduino Uno
473 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin A0 on Arduino Uno. Wire the sensor in series with a fixed resistor (voltage divider) - resistance drops as force/bend increases.
6#define SENSOR_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(SENSOR_PIN);
14 float voltage = raw * 5.0 / 1023.0;
15
16 Serial.print("Raw: "); Serial.print(raw);
17 Serial.print(" Voltage: "); Serial.println(voltage);
18
19 delay(200);
20}
📄 File: force_sensor_5.08mm_circle_(2)_-_arduino_nano.inoArduino Nano
474 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin A0 on Arduino Nano. Wire the sensor in series with a fixed resistor (voltage divider) - resistance drops as force/bend increases.
6#define SENSOR_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(SENSOR_PIN);
14 float voltage = raw * 5.0 / 1023.0;
15
16 Serial.print("Raw: "); Serial.print(raw);
17 Serial.print(" Voltage: "); Serial.println(voltage);
18
19 delay(200);
20}
📄 File: force_sensor_5.08mm_circle_(2)_-_arduino_mega.inoArduino Mega
474 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin A0 on Arduino Mega. Wire the sensor in series with a fixed resistor (voltage divider) - resistance drops as force/bend increases.
6#define SENSOR_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(SENSOR_PIN);
14 float voltage = raw * 5.0 / 1023.0;
15
16 Serial.print("Raw: "); Serial.print(raw);
17 Serial.print(" Voltage: "); Serial.println(voltage);
18
19 delay(200);
20}
📄 File: force_sensor_5.08mm_circle_(2)_-_esp32.inoESP32
467 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin 34 on ESP32. Wire the sensor in series with a fixed resistor (voltage divider) - resistance drops as force/bend increases.
6#define SENSOR_PIN 34
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(SENSOR_PIN);
14 float voltage = raw * 3.3 / 4095.0;
15
16 Serial.print("Raw: "); Serial.print(raw);
17 Serial.print(" Voltage: "); Serial.println(voltage);
18
19 delay(200);
20}
📄 File: force_sensor_5.08mm_circle_(2)_-_esp8266.inoESP8266
469 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin A0 on ESP8266. Wire the sensor in series with a fixed resistor (voltage divider) - resistance drops as force/bend increases.
6#define SENSOR_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(SENSOR_PIN);
14 float voltage = raw * 3.3 / 1023.0;
15
16 Serial.print("Raw: "); Serial.print(raw);
17 Serial.print(" Voltage: "); Serial.println(voltage);
18
19 delay(200);
20}
📄 File: force_sensor_5.08mm_circle_(2)_-_stm32.inoSTM32
469 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin PA0 on STM32. Wire the sensor in series with a fixed resistor (voltage divider) - resistance drops as force/bend increases.
6#define SENSOR_PIN PA0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(SENSOR_PIN);
14 float voltage = raw * 3.3 / 4095.0;
15
16 Serial.print("Raw: "); Serial.print(raw);
17 Serial.print(" Voltage: "); Serial.println(voltage);
18
19 delay(200);
20}
📄 File: force_sensor_5.08mm_circle_(2)_-_raspberry_pi_pico.inoRaspberry Pi Pico
479 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin 26 on Raspberry Pi Pico. Wire the sensor in series with a fixed resistor (voltage divider) - resistance drops as force/bend increases.
6#define SENSOR_PIN 26
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(SENSOR_PIN);
14 float voltage = raw * 3.3 / 4095.0;
15
16 Serial.print("Raw: "); Serial.print(raw);
17 Serial.print(" Voltage: "); Serial.println(voltage);
18
19 delay(200);
20}
FSR (force-sensitive resistor) - resistance decreases with applied force. Wire in a voltage divider.

نظرة عامة ومواصفات المنتج — بالعربية

Force Sensor 5.08mm Circle متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Sensors، بسعر 115,00 EGP. كود المنتج لدينا: EK810. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Product Name: Force Sensor 5.08mm Circle
  • Sensor Type: Force Sensitive Resistor (FSR)
  • Sensing Area: Circular
  • Active Diameter: 5.08 mm
  • Operating Voltage: 3.3V – 5V
  • Resistance Range: Variable (Pressure Dependent)
  • Response Type: Analog
  • Sensitivity: Proportional to Applied Force

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Sensors في إكوسترا.

Specification

Specification

WeightWeight0,001 g
Dimensions2 × 1 × 0,05 cm
Product NameForce Sensor 5.08mm Circle
Sensor TypeForce Sensitive Resistor (FSR)
Sensing AreaCircular
Active Diameter5.08 mm
Operating Voltage3.3V – 5V
Resistance RangeVariable (Pressure Dependent)
Response TypeAnalog
SensitivityProportional to Applied Force
ThicknessUltra-Thin
FlexibilityFlexible Film Sensor
Operating Temperature-20°C to +60°C
ApplicationPressure Detection, Touch Sensing, Robotics, DIY Electronics

Customer Reviews