# Force Sensitive Resistor (7mm, 5KG)

**Type:** Product page · **SKU:** CE09431 · **Brand:** [Core Electronics](https://core-electronics.com.au/brands/core-electronics-australia)
**Page:** https://core-electronics.com.au/force-sensitive-resistor-5kg.html ([markdown](https://core-electronics.com.au/force-sensitive-resistor-5kg.html.md))

Use the force...sensitive resistor! Add an easy-to-implement haptic analog sensor to your projects.

## Pricing

- **Price:** $8.20 (inc GST) — $7.45 AUD, exc GST
- **Quantity discounts:** 5+ $7.31 (exc GST) · 15+ $7.08 (exc GST)

## Availability & dispatch

- In stock, ships same business day if ordered before 2PM (Australia/Sydney).
- We can dispatch 32 today; more stock is typically available with a 8–12 day lead time.

## Description

Great for approximating how much pressure is being exerted an FSR is a very versatile sensor.

Use the pressure-resistance relationship in a voltage divider to sense the amount of pressure being exerted, and use an ADC to grab the value.

When no pressure is being applied the resistance is well over 1M ohm.

### Specifications

- Sensing area: 0.7mm (0.02")
- Pin pitch: 2.54mm (0.1")
- Sensing range: 100g-10kg

### Examples

#### Raspberry Pi Pico - Micropython

 ```
import machine
import utime

# Additional hardware
# * 1x 10k resistor

fsr = machine.ADC(28)

# A handy function for mapping values
def map_range(x, in_min, in_max, out_min, out_max):
    mapped = (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min
    return int(max(min(mapped, out_max), out_min))

while True:
    fsr_raw_reading = fsr.read_u16()

    fsr_filtered_reading = map_range(fsr_raw_reading, 1000, 9000, 0, 100)
    print(fsr_filtered_reading)
    utime.sleep(0.5)
```

## Images

- [Product image 1](https://core-electronics.com.au/media/catalog/product/f/s/fsr.jpg)
