Force Sensor 0.5 Inch China Make
Rs. 257.00 Rs. 288.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: | |
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);
}
15 days