-This is a pressure sensitive resistor with a square, 1.Seventy five x 1.5″, sensing location.
-This FSR will range its resistance depending on how a great deal strain is being implemented to the sensing vicinity.
-The harder the pressure, the lower the resistance.
-When no stress is being applied to the FSR its resistance will be larger than 1MΩ.
-This FSR can feel implemented force everywhere inside the range of 100g-10kg.
-Two pins extend from the lowest of the sensor with 0.1″ pitch making it bread friendly.
-There is a peel-and-stick rubber backing on the alternative aspect of the sensing location to mount the FSR.
-Just Connect a resistor to shape a voltage divider and degree the voltage at the junction to discover the pressure applied.
-These sensors are easy to set up and tremendous for sensing stress, however they aren’t relatively accurate.
-Use them to feel if it’s being squeezed, however you could no longer want to use it as a scale.
Dimensions: Overall duration: three.5″ Overall width: 1.Seventy five″ Sensing area: 1.75×1.Five″ Documents: FSR Integrating Guide Comments Write Your Comments
This sensor may be without difficulty interfaced with Microcontrollers, Arduino Boards, Raspberry Pi and so forth. The use of an Analog to Digital Converter (ADC).
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 |
Square |
Sensing Area diameter (mm) |
44.45 x 44.45 |
Min Pressure |
100 gm |
Max Pressure |
10 kg |
OVERVIEW:
-Easily customizable to a wide range of sizes
-Cost-effective
-Ultra-thin; 0.45 mm
-Robust; up to 10 million actuations
-Simple and easy to Integrate.
PACKAGE INCLUDES:
1 PCS x Force Sensor Square 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);
}