├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── Adafruit_PureIO ├── __init__.py ├── smbus.py └── spi.py ├── CODE_OF_CONDUCT.md ├── LICENSE ├── LICENSES ├── CC-BY-4.0.txt ├── MIT.txt └── Unlicense.txt ├── README.rst ├── README.rst.license ├── docs ├── _static │ ├── favicon.ico │ └── favicon.ico.license ├── api.rst ├── api.rst.license ├── conf.py ├── index.rst └── index.rst.license ├── optional_requirements.txt ├── pyproject.toml ├── requirements.txt └── tests └── test_I2C.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/.pylintrc -------------------------------------------------------------------------------- /Adafruit_PureIO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/Adafruit_PureIO/__init__.py -------------------------------------------------------------------------------- /Adafruit_PureIO/smbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/Adafruit_PureIO/smbus.py -------------------------------------------------------------------------------- /Adafruit_PureIO/spi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/Adafruit_PureIO/spi.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/LICENSES/Unlicense.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/README.rst -------------------------------------------------------------------------------- /README.rst.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/README.rst.license -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/favicon.ico.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018 Phillip Torrone for Adafruit Industries 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/api.rst.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/docs/api.rst.license -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/index.rst.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/docs/index.rst.license -------------------------------------------------------------------------------- /optional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/optional_requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_I2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_Python_PureIO/HEAD/tests/test_I2C.py --------------------------------------------------------------------------------