Hello
I am trying to move an arduino project where I read an ADC value from a FSR sensor. In arduino the FSR is powered by 5V and has 10Kohm pulldown resistor. The board is currently connected using the USB cable and will remain that way
When I've looked at the ADC examples, SDK documentation and forums I have seen that
- Max Input on ADC Pin should not be higher than 2.4V
- You can configure different prescale and reference values
My questions are :
-
How can I check if I have damaged the ADC Pins, as I have already tried the FSR board in some pins?
-
I don't quite understand the prescaling and reference constants. My guess on the Reference is used to calculate the actual Analog value = RefValue * ValueRead / Resolution. But I don't have a clue on the prescaling purpose and whether is referenced to VDD of the Ref value selected
-
If I change the Vcc=5V and use VDD instead, what configurations of reference and prescaling shall I use for a quick test
Regards