├── .hgignore ├── .travis.yml ├── LICENSE ├── README.rst ├── ads1x15.py ├── docs ├── Makefile ├── ads1x15.rst ├── conf.py ├── index.rst └── make.bat └── setup.py /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/.hgignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/README.rst -------------------------------------------------------------------------------- /ads1x15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/ads1x15.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/ads1x15.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/docs/ads1x15.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/docs/make.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/micropython-adafruit-ads1015/HEAD/setup.py --------------------------------------------------------------------------------