-1

I am new to Arduino. I have currently connected a FSR sensor to the TOUT pin of ESP WROOM-02. How do I add additional FSR sensor to ESP WROOM-02? enter image description here

asked Jan 16, 2018 at 1:37
1
  • TOUT: it can be used to test the power-supply voltage of VDD3P3 (Pin3 and Pin4) and the input power voltage of TOUT (Pin6). These two functions cannot be used simultaneously. Why did you connect a FSR sensor to TOUT? Commented Jan 16, 2018 at 9:03

1 Answer 1

2

An FSR (Force Sensing Resistor) varies in resistance as force or pressure is applied. Most often such devices are connected to the positive power rail and the ADC input of a embedded micro controller. At the same time a second known fixed resistor is connected to the opposite power rail (ground) and the same ADC input. This forms a resistor divider network where the ADC in the embedded micro controller can measure the force applied to the FSR by measuring the voltage of the resistor divider.

To measure 2 or more FSRs using the same ADC input, consider connecting one lead of each FSR to a digital input/output pin of the embedded micro controller. Then connecting the other lead of each FSR to the ADC input. To measure the force on the 1st FSR, configure the connected digital pin as a high ouput using software. So that all the other FSRs do not influence the measurement, configure all the other digital pins to have high impedance. Often this can be done by programming these other digital pins as inputs. Cycle through all FSRs in a similar fashion using software.

answered Jan 16, 2018 at 2:06

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.