-Get the extremely good Force pressure sensor 0.5-inch diameter at a low price.
-This is a force touchy resistor with a round, 0.5″ diameter, sensing area.
-This FSR will range its resistance relying on how much pressure is being carried out to the sensing area.
-The tougher the force, the decrease the resistance.
-When no stress is been practice to the FSR its resistance may be larger than 1MΩ.
-This FSR can feel implemented pressure anywhere in the variety of 100g-10kg.
-Two pins extend from the lowest of the sensor with 0.1″ pitch making it bread pleasant.
-There is a peel-and-stick rubber backing on the alternative facet of the sensing region to mount the FSR.
-Just Connect a resistor to shape a voltage divider and measure the voltage on the junction to find the pressure applied.
-These sensors are easy to installation and tremendous for sensing strain, but they aren’t distinctly accurate.
-Use them to experience if it’s being squeezed, however you may not need to use it as a scale.
-This sensor can without difficulty interface with Microcontrollers, Arduino Boards, Raspberry Pi, etc.
-The use of an Analog to Digital Converter (ADC).
-With the intention to get the great deal in this strain sensor at low priced fee purchase now.
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.
SPECIFICATIONS: |
|
Shape |
Circular |
Sensing Area diameter (mm) |
14 |
Min Pressure |
100 gm |
Max Pressure |
10 Kg |
OVERVIEW:
Applications:
-Testing and Measurement Equipment
-Embedded Electronics
-OEM Development Kit
-Consumer Electronics
-Multimeter
PACKAGE INCLUDES:
1 PCS x Force Sensor 0.5 Inch China Make
//SOURCE CODE TAKEN FROM BELOW LINK
//https://lastminuteengineers.com/fsr-arduino-tutorial/
int fsrPin = 0; // the FSR and 10K pulldown are connected to a0
int fsrReading; // the analog reading from the FSR resistor divider
void setup(void) {
Serial.begin(9600);
}
void loop(void) {
fsrReading = analogRead(fsrPin);
Serial.print("Analog reading = ");
Serial.print(fsrReading); // print the raw analog reading
if (fsrReading < 10) {
Serial.println(" - No pressure");
} else if (fsrReading < 200) {
Serial.println(" - Light touch");
} else if (fsrReading < 500) {
Serial.println(" - Light squeeze");
} else if (fsrReading < 800) {
Serial.println(" - Medium squeeze");
} else {
Serial.println(" - Big squeeze");
}
delay(1000);
}