Arduino Projects

Flexiforce pressure sensor or force sensitive resistor “FSR” Programming & calibration using Arduino

Flexiforce Sensor Description:

 

Flexiforce Pressure Sensor with Arduino– This Tutorial is about the FlexiForce sensor. In this tutorial I will show you the easiest and simplest way how to calibrate the FSR Sensor, During the calibration, we will be measuring some known weights with this sensor, I personally don’t recommend using flexiforce sensor for weight measurement, for weight measurement load cell is the best choice.

I have very detailed tutorials on weight measurement using load cell and hx711. if in case you want to watch this tutorial. In this tutorial, I will be using weights only for demonstration purposes. This tutorial covers the extreme basics, how to use the FSR sensor with Arduino, while in the upcoming tutorials we will be using this sensor in security-based projects, we will also be using this sensor in a plastic injection molding machine for pressure monitoring, we will also be using this in robots.


Amazon Links:

12v Adaptor:

Arduino Uno

Arduino Nano

Mega 2560:

Flexiforce sensor:

Other Tools and Components:

Top Arduino Sensors:

Super Starter kit for Beginners

Digital Oscilloscopes

Variable Supply

Digital Multimeter

Soldering iron kits

PCB small portable drill machines

*Please Note: These are affiliate links. I may make a commission if you buy the components through these links. I would appreciate your support in this way!

FlexiForce Sensor:

Flexiforce

A flexiforce pressure sensor is also known as the force Sensoring Resistor. The Flexiforce sensor or force-sensing resistor or the FSR is made up of such type of material whose resistance changes when a force or pressure or mechanical stress is applied. A flexiforce pressure sensor is also known as force-sensitive resistor “FSR”. This is a type of Resistor. Want to know about different types of Resistors?

As you can see clearly in the picture, the force sensitive resistor or FSR has three legs or pins. The middle one is not used.



The circular area of the sensor is the effective area of the sensor, where the force or pressure will be applied. To apply the force or pressure exactly at this area I cut a piece of hard rubber in a circular shape and fix it using hot glue. Now our sensor is ready.

Arduino Flexiforce Sensor Circuit Diagram:

Flexiforce

FlexiForce sensor is connected in series with a 10k resistor, you can try some other resistors like 1 megaohm or 3.3k if you want to measure high force or high pressure. The Flexiforce sensor and the 10k resistor makes a voltage divider, this way for different forces or pressure values we will get different voltages.

From this voltage variation which is due to the force or weight, we can calculate the weight in pounds or kgs. So make sure you have some known weights, I have 1kg and 3kg weights which I will use for the calibration. A 47uf capacitor is connected in parallel with the 10k resistor, you can use a small value capacitor, the purpose of this capacitor is to stop the voltage fluctuation and get stable values. We will read these voltages using the Arduino’s analog pin A0. Once again if you want to measure high pressure or weight then use a small value resistor.

For the Flexiforce sensor, interfacing watch my video tutorial available at the end.


Flexiforce Sensor Arduino Programming:

The code is very simple, consists of a few lines. The force-sensitive resistor or FSR is connected with the analog pin A0 of the Arduino. The same program will also run on the Arduino Mega, Arduino Pro Mini, and Arduino Micro. The purpose of the code given below is to send the FSR sensor values to the Serial Monitor as we bend the Sensor.

Multiple FSR Sensors can be connected and programmed in the same way.

float cf = 19.5; // caliberation factor

int ffs1 = A0; // FlexiForce sensor is connected analog pin A0 of arduino or mega. 

int ffsdata = 0; 
float vout; 
void setup()
{
  Serial.begin(9600); 
  pinMode(ffs1, INPUT); 
  
}

void loop()
{
 

 ffsdata = analogRead(ffs1);
vout = (ffsdata * 5.0) / 1023.0; 
vout = vout * cf ; 
Serial.print("Flexi Force sensor: "); 
Serial.print(vout,3); 
Serial.println(""); 
delay(100); 
  
}

I uploaded the code given above, in the Arduino Uno Board. I started off by opening the Serial monitor, selected the desired baud rate as defined in the programming, and I was able to monitor the FSR sensor value on the screen. Above is the very basic programming.

You can modify this code and make amazing projects e.g.

Flexiforce Sensor based Security System.

Hit detection with an alert message and so on.


Watch Video Tutorial:

Engr Fahad

My name is Shahzada Fahad and I am an Electrical Engineer. I have been doing Job in UAE as a site engineer in an Electrical Construction Company. Currently, I am running my own YouTube channel "Electronic Clinic", and managing this Website. My Hobbies are * Watching Movies * Music * Martial Arts * Photography * Travelling * Make Sketches and so on...

One Comment

  1. What an awesome post ! Thanks you for sharing such a great content. Just one question, do you know if this method is valid por sensors like ‘SF15-600@10kg from LEANSTAR’ ? and do you know any multiplex or devices to define something like a bus of sensor in order to use just one arduino ? thanks you in advance, keep on it !

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button