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
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