Arduino board connection example
FORCE SENSOR CIRCUIT EXAMPLE FOR ARDUINO
This is an example of a pressure sensor operating on an Arduino board, a common development board.
Arduino-FSR sensor example
Any Arduino board UNO, DUE, MEGA, etc. can measure Marveldex sensor
Measure with the ADC ports.

Sensor 2-pin connection
(ADC and Voltage. Or ADC and GND)
-
One pin is connected to Vcc.
-
The other pin is connected to ADC
-
Pulldown resistance is 0.5Kohm to 10Kohm

Arduino example source
int flexSensorPin = A0; //analog pin 0
void setup(){
Serial.begin(9600);
}
void loop(){
int flexSensorReading = analogRead(flexSensorPin);
int flex = map(flexSensorReading, 0, 1024, 0, 200);
Serial.println(flex);
delay(250);
}
Pressure sensor starter kit for Arduino
(6-channel shield)

This is a kit for easy connection of pressure sensors.
You can connect up to 6 pressure sensors without troublesome soldering, and source code is provided.
It takes 5 minutes to check the sensor output.
Starter Kit Components
