├── .gitignore ├── LICENSE ├── MANIFEST ├── README.md ├── RaspberryPiADS1299 ├── ADS1299_API.py └── __init__.py ├── changelog.md ├── images └── banner.jpg ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjcroft/RaspberryPiADS1299/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjcroft/RaspberryPiADS1299/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjcroft/RaspberryPiADS1299/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjcroft/RaspberryPiADS1299/HEAD/README.md -------------------------------------------------------------------------------- /RaspberryPiADS1299/ADS1299_API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjcroft/RaspberryPiADS1299/HEAD/RaspberryPiADS1299/ADS1299_API.py -------------------------------------------------------------------------------- /RaspberryPiADS1299/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjcroft/RaspberryPiADS1299/HEAD/RaspberryPiADS1299/__init__.py -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjcroft/RaspberryPiADS1299/HEAD/changelog.md -------------------------------------------------------------------------------- /images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjcroft/RaspberryPiADS1299/HEAD/images/banner.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | spidev 3 | RPi -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjcroft/RaspberryPiADS1299/HEAD/setup.py --------------------------------------------------------------------------------