. What does each line of the following codedo?
fsrPin = ‘A4’; ledPin = ‘D4’;
anArduinoObj = arduino();
forceVoltage = readVoltage(anArduinoObj,fsrPin);
if forceVoltage > 4.0
writeDigitalPin(anArduinoObj, ledPin, 1);
end
Based on the Adafruit pages related to their round FSRsensor, what is the required force to read a voltage greater than4V?