├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── src ├── pdwiringPi.c └── wiringPi-help.pd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garthz/pdwiringPi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garthz/pdwiringPi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garthz/pdwiringPi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garthz/pdwiringPi/HEAD/README.md -------------------------------------------------------------------------------- /src/pdwiringPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garthz/pdwiringPi/HEAD/src/pdwiringPi.c -------------------------------------------------------------------------------- /src/wiringPi-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garthz/pdwiringPi/HEAD/src/wiringPi-help.pd --------------------------------------------------------------------------------