How to hook up a Flexi Force sensor with Arduino and read out the values.
-
int fsrReading;
-
-
void setup(void) {
-
Serial.begin(9600);
-
}
-
-
void loop(void) {
-
fsrReading = analogRead(A0);
-
Serial.print("Analog reading = ");
-
Serial.println(fsrReading);
-
-
delay(100);
-
}
See example of how to use a Flexi Force sensor with Arduino.
The codes aren’t working.
What kind of error do you get?
hey,
Am using this sensor in my project as impact measuring sensor..and its working perfectly
but i don’t understand what the analog reading of this sensor means..like the readings indicates what ?
and if i want to convert this analog readings from this to force how i can do it ??
Thanks in advance,
hey! im using adduino for the very first time and im trying to use this program using a flexiforce sensor. now im currenty working on a project that involves measuring the forces exerted on “5″ sensors. i was initially using other methods but i was not getting the desired output, but when i tried this program i was happy. could you help to develop the program that would enable me to channel 5 flexiforce 1lbs sensors.
its kinda urgent, so please oblige and help. i dont have any other form of help
i want to stop the timer once somebody presses the sensor. How to do it?