├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── documentation ├── Function-reference.md └── Technical-reference.md ├── examples ├── analog-event.py ├── analog.py ├── babbage-lights-n-sounds.py ├── drums.py ├── eventbinding.py ├── ldr.py ├── pdtone.py ├── sensor.py ├── sounds │ ├── clap.wav │ ├── crash.wav │ ├── hat.wav │ ├── hit.wav │ ├── rim.wav │ ├── smash.wav │ ├── thud.wav │ └── ting.wav └── test.py ├── explorer-hat.png ├── hardware ├── ExplorerHAT.fzpz └── ExplorerHATPro.fzpz ├── library ├── CHANGELOG.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── explorerhat │ ├── __init__.py │ ├── ads1015.py │ └── pins.py ├── setup.py └── test.py ├── packaging ├── CHANGELOG ├── debian │ ├── README │ ├── changelog │ ├── clean │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── rules │ └── source │ │ ├── format │ │ └── options ├── makeall.sh ├── makedeb.sh └── makelog.sh ├── terminal.jpg └── tutorial ├── README.md ├── _tutorial.py ├── _tutorial_explorerhat.py ├── images └── explorer-hat-pro-ldr.png ├── welcome-analog.py ├── welcome-inputs.py └── welcome.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/TODO.md -------------------------------------------------------------------------------- /documentation/Function-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/documentation/Function-reference.md -------------------------------------------------------------------------------- /documentation/Technical-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/documentation/Technical-reference.md -------------------------------------------------------------------------------- /examples/analog-event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/analog-event.py -------------------------------------------------------------------------------- /examples/analog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/analog.py -------------------------------------------------------------------------------- /examples/babbage-lights-n-sounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/babbage-lights-n-sounds.py -------------------------------------------------------------------------------- /examples/drums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/drums.py -------------------------------------------------------------------------------- /examples/eventbinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/eventbinding.py -------------------------------------------------------------------------------- /examples/ldr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/ldr.py -------------------------------------------------------------------------------- /examples/pdtone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/pdtone.py -------------------------------------------------------------------------------- /examples/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/sensor.py -------------------------------------------------------------------------------- /examples/sounds/clap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/sounds/clap.wav -------------------------------------------------------------------------------- /examples/sounds/crash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/sounds/crash.wav -------------------------------------------------------------------------------- /examples/sounds/hat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/sounds/hat.wav -------------------------------------------------------------------------------- /examples/sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/sounds/hit.wav -------------------------------------------------------------------------------- /examples/sounds/rim.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/sounds/rim.wav -------------------------------------------------------------------------------- /examples/sounds/smash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/sounds/smash.wav -------------------------------------------------------------------------------- /examples/sounds/thud.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/sounds/thud.wav -------------------------------------------------------------------------------- /examples/sounds/ting.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/sounds/ting.wav -------------------------------------------------------------------------------- /examples/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/examples/test.py -------------------------------------------------------------------------------- /explorer-hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/explorer-hat.png -------------------------------------------------------------------------------- /hardware/ExplorerHAT.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/hardware/ExplorerHAT.fzpz -------------------------------------------------------------------------------- /hardware/ExplorerHATPro.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/hardware/ExplorerHATPro.fzpz -------------------------------------------------------------------------------- /library/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/library/CHANGELOG.txt -------------------------------------------------------------------------------- /library/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/library/LICENSE.txt -------------------------------------------------------------------------------- /library/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/library/MANIFEST.in -------------------------------------------------------------------------------- /library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/library/README.md -------------------------------------------------------------------------------- /library/explorerhat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/library/explorerhat/__init__.py -------------------------------------------------------------------------------- /library/explorerhat/ads1015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/library/explorerhat/ads1015.py -------------------------------------------------------------------------------- /library/explorerhat/pins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/library/explorerhat/pins.py -------------------------------------------------------------------------------- /library/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/library/setup.py -------------------------------------------------------------------------------- /library/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/library/test.py -------------------------------------------------------------------------------- /packaging/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/packaging/CHANGELOG -------------------------------------------------------------------------------- /packaging/debian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/packaging/debian/README -------------------------------------------------------------------------------- /packaging/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/packaging/debian/changelog -------------------------------------------------------------------------------- /packaging/debian/clean: -------------------------------------------------------------------------------- 1 | *.egg-info/* 2 | -------------------------------------------------------------------------------- /packaging/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /packaging/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/packaging/debian/control -------------------------------------------------------------------------------- /packaging/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/packaging/debian/copyright -------------------------------------------------------------------------------- /packaging/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packaging/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/packaging/debian/rules -------------------------------------------------------------------------------- /packaging/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /packaging/debian/source/options: -------------------------------------------------------------------------------- 1 | extend-diff-ignore = "^[^/]+\.egg-info/" 2 | -------------------------------------------------------------------------------- /packaging/makeall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/packaging/makeall.sh -------------------------------------------------------------------------------- /packaging/makedeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/packaging/makedeb.sh -------------------------------------------------------------------------------- /packaging/makelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/packaging/makelog.sh -------------------------------------------------------------------------------- /terminal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/terminal.jpg -------------------------------------------------------------------------------- /tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/tutorial/README.md -------------------------------------------------------------------------------- /tutorial/_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/tutorial/_tutorial.py -------------------------------------------------------------------------------- /tutorial/_tutorial_explorerhat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/tutorial/_tutorial_explorerhat.py -------------------------------------------------------------------------------- /tutorial/images/explorer-hat-pro-ldr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/tutorial/images/explorer-hat-pro-ldr.png -------------------------------------------------------------------------------- /tutorial/welcome-analog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/tutorial/welcome-analog.py -------------------------------------------------------------------------------- /tutorial/welcome-inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/tutorial/welcome-inputs.py -------------------------------------------------------------------------------- /tutorial/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimoroni/explorer-hat/HEAD/tutorial/welcome.py --------------------------------------------------------------------------------