You're going to get slightly jittery results by relying on Python's time functions running on a Raspberry Pi. This is because Raspberry Pi OS isn't a real-time OS. It does its best to make the time functions accurate, but if other tasks get in the way, time.sleep() won't always give you exactly the amount you requested.
The ADS1115 has a continuous mode setting, where you can tell the ADC to read every 1/n seconds. The Adafruit library doesn't support this directly. This one --- chandrawi/ADS1x15-ADC: Python library used for ADS1x15 analog to digital converter --- does, though I haven't tried using it. To you continuous mode with the ADS1115, you have to set the rate, read the ADC, then every time the ADC has a new value for you it sets the ALRT pin. You'd have to set up an interrupt that would read the ALRT pin and collect the new conversion value.
These results would still drift a bit, as the time base on the ADS1115 isn't synchronized with the clock that generates your 1 Hz sine wave. This is a more complex problem that may not be important to you.
The ADS1115 has a continuous mode setting, where you can tell the ADC to read every 1/n seconds. The Adafruit library doesn't support this directly. This one --- chandrawi/ADS1x15-ADC: Python library used for ADS1x15 analog to digital converter --- does, though I haven't tried using it. To you continuous mode with the ADS1115, you have to set the rate, read the ADC, then every time the ADC has a new value for you it sets the ALRT pin. You'd have to set up an interrupt that would read the ALRT pin and collect the new conversion value.
These results would still drift a bit, as the time base on the ADS1115 isn't synchronized with the clock that generates your 1 Hz sine wave. This is a more complex problem that may not be important to you.
Statistics: Posted by scruss — Thu Jul 25, 2024 4:31 pm