ziatajo
ziatajo
Exactly, both sensor values are only 0 or -1 now. I'm using an Adafruit Feather ESP32 if that helps. Let me know if you need something else. Thank you for...
That is a good point. I have a Step-Up for the 5V, but connected DVDD and AVDD to 5V now I changed that DVDD is on the 3.3V. Unfortunately it...
I let the ADS1262 in my office over the weekend, thats why I could test it not before now. As SammyRamone state, also with the double reading it doesn't work....
How do I change that? :)
I changed it like the following. In two steps, first only the PulseMode(), than with delay. Both doesn't change anything. adc1.setContinuousMode(); + delay doesn't help too. ``` void setup() {...
With this I get the same output as at the start: Reading Voltages: 0 , -1 0 , 0 0 , -1 -1 , -1 -1 , 0 -1 ,...
Hi, Do you have any other ideas, how I could solve this? Thank you.
Hi @q-bird I changed my code to your suggestion. If I read just one sensor it works, if I try to read two I get the same result as before...
``` void loop() { voltage1 = adc1.readADC1(pos_pin1,ADS126X_DIGITAL); // read the voltage Serial.print(voltage1); // send voltage through seria delay(10000); Serial.print(" , "); voltage2 = adc1.readADC1(pos_pin2,ADS126X_DIGITAL); // read the voltage Serial.println(voltage2); //...
Ok, it looks better :) The values are positive when i press my FSR resistive sensor. Reading Voltages: -255463651 , -255539036 -255456798 , -255571295 2130455999 , -255822856 -253952042 , -252904811...