Metadata-Version: 2.1
Name: ads1015
Version: 0.0.4
Summary: Python library for the ADS1015 4-channel ADC
Home-page: https://www.pimoroni.com
Author: Philip Howard
Author-email: phil@pimoroni.com
License: MIT
Project-URL: GitHub, https://www.github.com/pimoroni/ads1015-python
Keywords: Raspberry Pi
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Hardware
Description-Content-Type: text/markdown
Requires-Dist: i2cdevice (>=0.0.6)
Requires-Dist: setuptools (>=30.4.0)

# ADS1015 4 channel differential/single-ended ADC

[![Build Status](https://travis-ci.com/pimoroni/ads1015-python.svg?branch=master)](https://travis-ci.com/pimoroni/ads1015-python)
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/ads1015-python/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/ads1015-python?branch=master)
[![PyPi Package](https://img.shields.io/pypi/v/ads1015.svg)](https://pypi.python.org/pypi/ads1015)
[![Python Versions](https://img.shields.io/pypi/pyversions/ads1015.svg)](https://pypi.python.org/pypi/ads1015)

# Installing

Stable library from PyPi:

* Just run `sudo pip install ads1015`

Latest/development library from GitHub:

* `git clone https://github.com/pimoroni/ads1015-python`
* `cd ads1015-python`
* `sudo ./install.sh`


# Changelog

0.0.4
-----

* Port to i2cdevice>=0.0.6 set/get API

0.0.3
-----

* Fixed timeout in wait_for_conversion
* Aliased timeout exception to ads1015.ADS1015TimeoutError

0.0.2
-----

* Fixed Python 2.7 bug with missing TimeoutError

0.0.1
-----

* Initial Release


