Electrical – How to human finger pressure be measured

capacitivepressuresensor

I am dealing with a situation where a patient can only very lightly press his fingers / hand to signal what he / she wants. Speaking or eye tracking is not possible.

The person is also not able to lift his hand. The only movement possible is a slight press with the hand / fingers.

I was therefore thinking about using a capacitative device that would be calibrated to detect how much pressure is a willing / intended press and which amount pressure is simply a resting position of the hand on the device.

I guess a capacitative device is what is required here.
I saw a solution of a custom device here on YouTube, but that looked so custom-made and so rigid that I was wondering if what I need actually already exists.

I would therefore like to ask how I could measure the pressure of a human finger / hand on a device in a reliable way.

Thank you.

Edit: Nobody so far suggested to use a precision balance with USB output option. May I ask if that would not work?

enter image description here

Best Answer

There is a component called a "force-sensitive resistor" that I'd suggest you try. You can get them in a small, round configuration like this one from Adafruit force-sensitive resistor. enter image description here

They are easy to read as they just appear as a variable resistance; as the finger pressure is increased, the resistance decreases. Make a voltage divider with the FSR as one leg, then most any microcontroller with an analog input can measure the pressure.

You can also make these yourself using a sandwich of piezoresistive sheet between two layers of conductive fabric, but the ready-made FSR is easier.

A capacitive sensor may also work, but detecting variation in pressure in a consistent way is trickier. The capacitance will increase with finger pressure, but the capacitance will also be affected by the skin's hydration, surface moisture, etc.

Related Topic