venkatayyan253637
New member
Hello everyone,
I am right now working with the Teensy 4.1 and reading the output voltage from the Force sensor (Burster 8417) which is amplified by Futek IAA100 Amplifier.
I tried troubleshooting the issue but couldn't fix it and stuck with this.
I cross verified the voltage across the Analog pin and the ground, it is within the acceptable range (0-3.3V). Also, when there is force applied the voltage deviates on the multimeter. But I cannot actually print the values using the serial.print(). When i tried to print the raw analog values between 0-1023, there was also no change.
I have paste the debug code I am using right now and then attached the code which I am using for the system.
const int analogPin = A2; // Analog input pin
void setup() {
Serial.begin(9600);
analogReadResolution(10);
}
void loop() {
int adcValue = analogRead(analogPin);
Serial.println(adcValue);
delay(100);
}
I am right now working with the Teensy 4.1 and reading the output voltage from the Force sensor (Burster 8417) which is amplified by Futek IAA100 Amplifier.
I tried troubleshooting the issue but couldn't fix it and stuck with this.
I cross verified the voltage across the Analog pin and the ground, it is within the acceptable range (0-3.3V). Also, when there is force applied the voltage deviates on the multimeter. But I cannot actually print the values using the serial.print(). When i tried to print the raw analog values between 0-1023, there was also no change.
I have paste the debug code I am using right now and then attached the code which I am using for the system.
const int analogPin = A2; // Analog input pin
void setup() {
Serial.begin(9600);
analogReadResolution(10);
}
void loop() {
int adcValue = analogRead(analogPin);
Serial.println(adcValue);
delay(100);
}