├── .gitignore ├── .gitmodules ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── bindings.i ├── constants.py ├── examples ├── RUN_THESE_WITH_SUDO ├── callback.py ├── delay.py ├── ladder-board.py ├── n5510-mcp23017.py ├── quick2wire-io.py ├── softpwm.py └── two-mcp23017.py ├── generate-bindings.py ├── setup.cfg ├── setup.py ├── tests ├── piglow.py └── test.py ├── wiringpi-class.py └── wiringpi.i /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/README.md -------------------------------------------------------------------------------- /bindings.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/bindings.i -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/constants.py -------------------------------------------------------------------------------- /examples/RUN_THESE_WITH_SUDO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/examples/callback.py -------------------------------------------------------------------------------- /examples/delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/examples/delay.py -------------------------------------------------------------------------------- /examples/ladder-board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/examples/ladder-board.py -------------------------------------------------------------------------------- /examples/n5510-mcp23017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/examples/n5510-mcp23017.py -------------------------------------------------------------------------------- /examples/quick2wire-io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/examples/quick2wire-io.py -------------------------------------------------------------------------------- /examples/softpwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/examples/softpwm.py -------------------------------------------------------------------------------- /examples/two-mcp23017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/examples/two-mcp23017.py -------------------------------------------------------------------------------- /generate-bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/generate-bindings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/piglow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/tests/piglow.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/tests/test.py -------------------------------------------------------------------------------- /wiringpi-class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/wiringpi-class.py -------------------------------------------------------------------------------- /wiringpi.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertsavenue/WiringOP-Zero-Python/HEAD/wiringpi.i --------------------------------------------------------------------------------