Releases: adafruit/Adafruit_ADS1X15
Releases · adafruit/Adafruit_ADS1X15
2.6.0 Change examples to use Alert/Ready pin active low
What's Changed
- Abstract and expose
getFsRange()by @JonNelson in #94 - Update examples by @caternuson in #99
See #98 thread for more info on why FALLING was changed to RISING
New Contributors
- @JonNelson made their first contribution in #94
Full Changelog: 2.5.0...2.6.0
2.5.0 Correct Examples and DocString to report Volts
What's Changed
- Fix doc string and millivolts value in examples by @caternuson in #89 and #90
Full Changelog: 2.4.2...2.5.0
2.4.2 Bump version in library.properties
2.4.1 - Updated CI Actions versions
Update CI action versions
2.4.0 - Continuous and Non-Blocking
- Support added for continuous reading. (see new
continuousexample) - Support added for non-blocking reading. (see new 'nonblocking` example)
- Refactor clean up of a bunch of redundant code.
- Thanks @matthewlai
2.3.0 - Additional differential options
- Adds ability to other differential channel configurations.
Add bool to begin.
- Added a
boolreturn type forbegin()to allow checking initialization success. - Examples updated to use the
booland print and park on failure.
Update conversionComplete
- Add some parans to make operation order more explicit.
Improvements
Summary of 2.x changes, including previous 2.0.1 release.
- Classes refactored
- Remove fixed conversion delay and use polling loop
- Add ability to set data rate
- Add function to compute volts from ADC reading
- Moved to using BusIO internally
2.0.1 - Refactored **BREAKING CHANGE**
BREAKING CHANGE
This release includes some library refactoring that can potentially break existing code.
- The library files name has been changed from
Adafruit_ADS1015toAdafruit_ADS1X15. You will need to update#includes - The I2C address is now passed in via
begin()and not the c-tor. If you were using a non-default address, then you will need to make that change. - The library now uses the
Adafruit_BusIOlibrary, which is a new dependency.