top of page

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

Marveldex Co., Ltd.

Address : Room 1506, A-dong, Woorim Lions Valley 2cha, 14 Sagimakgol-ro 45beon-gil, Jungwon-gu, Seongnam-si, Gyeonggi-do,

Postal code : 13209

Phone : +82)32-624-3870 | Fax : +82)2-6442-7749 | Contact : sales @ mdex.co.kr

Copyright ©  Marveldex Inc. All rights reserved.

bottom of page