ESp8266 and force sensitive resistor example

A force-sensing resistor is a material whose resistance changes when a force or pressure is applied.

Force-sensing resistors consist of a conductive polymer, which changes resistance in a predictable manner following application of force to its surface.They are normally supplied as a polymer sheet or ink that can be applied by screen printing. The sensing film consists of both electrically conducting and non-conducting particles suspended in matrix. The particles are sub-micrometre sizes, and are formulated to reduce the temperature dependence, improve mechanical properties and increase surface durability. Applying a force to the surface of the sensing film causes particles to touch the conducting electrodes, changing the resistance of the film.

As with all resistive based sensors, force-sensing resistors require a relatively simple interface and can operate satisfactorily in moderately hostile environments. Compared to other force sensors, the advantages of FSRs are their size (thickness typically less than 0.5 mm), low cost and good shock resistance. A disadvantage is their low precision: measurement results may differ 10% and more

Here is a typical example

force-sensistive-resistor

Now we will show you how to connect this to your Arduino

Schematic

A simple schematic to build here basically you are creating a  voltage divider with 3k3 resistor and the force sensor, squeezing the force sensor alters the resistance so the voltage in at A0 will vary depending on the force

wemos and force sensor_schem

Here is a layout which you could build on a breadboard

wemos and force sensor_bb

 

Code

Pretty simple example, the analog input is echoed via the serial monitor

[codesyntax lang=”cpp”]

int forcePin = A0;
int forceReading;

void setup(void) 
{
  Serial.begin(9600);   // We'll send debugging information via the Serial monitor
}
 
void loop(void) 
{
  forceReading = analogRead(forcePin);
  Serial.print("Analog reading = ");
  Serial.println(forceReading);
 
  delay(500);
}

[/codesyntax]

Results

Open the serial monitor and then squeeze the sensor, you should see something like the following

force sensor output
force sensor output

 

Links
FSR400 Force Sensitive Resistor – Small

5 COMMENTS

  1. Hi I am looking to use a resistor like this to measure when a marble lands in a bucket placed on the sensor. Is this a reasonable thing to do with such a sensor?

    • Its possible, a typical FSR can sense applied force anywhere in the range of 100g-10kg. So the marble would have to register in that range. They tend not to be very accurate though.

LEAVE A REPLY

Please enter your comment!
Please enter your name here