├── .gitignore ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── README.md ├── RPi.md ├── apds9960 ├── __init__.py ├── const.py ├── device.py └── exceptions.py ├── micropython ├── test_ambient.py ├── test_gesture.py └── test_prox.py ├── rpi ├── test_ambient.py ├── test_gesture.py └── test_prox.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/README.md -------------------------------------------------------------------------------- /RPi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/RPi.md -------------------------------------------------------------------------------- /apds9960/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/apds9960/__init__.py -------------------------------------------------------------------------------- /apds9960/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/apds9960/const.py -------------------------------------------------------------------------------- /apds9960/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/apds9960/device.py -------------------------------------------------------------------------------- /apds9960/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/apds9960/exceptions.py -------------------------------------------------------------------------------- /micropython/test_ambient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/micropython/test_ambient.py -------------------------------------------------------------------------------- /micropython/test_gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/micropython/test_gesture.py -------------------------------------------------------------------------------- /micropython/test_prox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/micropython/test_prox.py -------------------------------------------------------------------------------- /rpi/test_ambient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/rpi/test_ambient.py -------------------------------------------------------------------------------- /rpi/test_gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/rpi/test_gesture.py -------------------------------------------------------------------------------- /rpi/test_prox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/rpi/test_prox.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liske/python-apds9960/HEAD/setup.py --------------------------------------------------------------------------------