Wish List 0

Force Sensor Small China Make

Rs. 195.00 Rs. 215.00

  • Product Code: SEN-FORCE
  • SKU -
  • Availability: In Stock
  • Price in reward points: 3
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-This is a small force sensitive resistor. It has a 0.Sixteen″ (4 mm) diameter energetic sensing vicinity.
-This FSR will range its resistance relying on how a good deal strain is being implemented to the sensing location.
-The more difficult the force, the lower the resistance.
-When no pressure is being implemented to the FSR, its resistance can be larger than 1MΩ, with full pressure carried out the resistance could be 2.5kΩ.

-Two pins make bigger from the lowest of the sensor with zero.1″ pitch making it bread friendly.

-These sensors are easy to set up and high-quality for sensing pressure, however they aren’t notably correct.
-Use them to sense if it’s being squeezed, but you may no longer want to apply it as a scale.


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:
Actuation Force                 0.1 Newtons
Force Sensitivity Range 0.1 – 10.02 Newtons
Non-Actuated Resistance         10M W
Device Rise Time                <3 microseconds
Operating Temperature (°C)      -30 to 60
Clock Speed                     16 MHz
Flash Memory                    32 KB
Sensing area                    0.4cm(4mm)

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 Small 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);

}

15 days

Write a review

Please login or register to review