├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── LICENSES ├── CC-BY-4.0.txt ├── MIT.txt └── Unlicense.txt ├── README.rst ├── README.rst.license ├── examples └── gc9a01_simpletest.py ├── gc9a01.py ├── pyproject.toml └── requirements.txt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/.pylintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/LICENSES/Unlicense.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/README.rst -------------------------------------------------------------------------------- /README.rst.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/README.rst.license -------------------------------------------------------------------------------- /examples/gc9a01_simpletest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/examples/gc9a01_simpletest.py -------------------------------------------------------------------------------- /gc9a01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/gc9a01.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylercrumpton/CircuitPython_GC9A01/HEAD/requirements.txt --------------------------------------------------------------------------------