Skip to content

Releases: pimoroni/ads1015-python

Version 1.0.0

30 Oct 16:00
b4529e0
Compare
Choose a tag to compare

This version is mostly to apply the repackaging to the pyproject.toml from our latest Python boilerplate, but also bumps the i2cdevice version to v1.0.0 which, in turn, has switched from smbus to smbus2 for more reliable use in isolated virtual environments.

What's Changed

New Contributors

Full Changelog: v0.0.8...v1.0.0

Version 0.0.8

18 Jan 11:54
70b102d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.7...v0.0.8

Version 0.0.7

01 Sep 11:53
Compare
Choose a tag to compare
  • Fix setting data rate
  • Add support for ADS1115
  • Add new detect_chip_type function

Version 0.0.6

20 Aug 18:12
v0.0.6
Compare
Choose a tag to compare
  • Added support for all addresses ads1015 supports
  • Genericized implementation away from pimoroni breakout
  • Typo fixes in docstring
  • Fix get_multiplexer so that it returns a value

Version 0.0.5

01 Nov 15:05
Compare
Choose a tag to compare
  • Fix to support alternate i2c address for #4
  • Typo fixes in DocString and comment

Version 0.0.4

13 Sep 13:24
Compare
Choose a tag to compare

Port to i2cdevice>=0.0.6 set/get API. For more information see: pimoroni/i2cdevice-python#3

Version 0.0.3

08 Jul 13:55
Compare
Choose a tag to compare
  • Fixed timeout in wait_for_conversion for #1
  • Aliased timeout exception to ads1015.ADS1015TimeoutError

If you plan to handle a read timeout and want your code to be Python 2 & 3 compatible you should use:

try:
    # read here
except ads1015.ADS1015TimeoutError:
    # handle here