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
-
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?user31481– user314812018年01月16日 09:03:18 +00:00Commented Jan 16, 2018 at 9:03
1 Answer 1
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.
Explore related questions
See similar questions with these tags.