├── .gitignore ├── COPYING.LESSER ├── INSTALL ├── LICENSE ├── People ├── README.md ├── devLib ├── Makefile ├── ds1302.c ├── ds1302.h ├── font.h ├── gertboard.c ├── gertboard.h ├── lcd.c ├── lcd.h ├── lcd128x64.c ├── lcd128x64.h ├── maxdetect.c ├── maxdetect.h ├── piFace.c ├── piFace.h ├── piFaceOld.c ├── piGlow.c ├── piGlow.h ├── piNes.c └── piNes.h ├── examples ├── BProTest │ ├── lnIOBoard │ ├── lnIOBoard.c │ └── testLedCon6.c ├── COPYING.LESSER ├── Gertboard │ ├── 7segments.c │ ├── Makefile │ ├── buttons.c │ ├── gertboard.c │ ├── record.c │ ├── temperature.c │ ├── voltmeter.c │ └── vumeter.c ├── Makefile ├── PiFace │ ├── Makefile │ ├── blink.c │ ├── buttons.c │ ├── ladder.c │ ├── metro.c │ ├── motor.c │ └── reaction.c ├── PiGlow │ ├── Makefile │ ├── piGlow0.c │ ├── piGlow1.c │ └── piglow.c ├── README.TXT ├── blink.c ├── blink.rtb ├── blink.sh ├── blink12.c ├── blink12drcs.c ├── blink6drcs.c ├── blink8.c ├── clock.c ├── delayTest.c ├── ds1302.c ├── echo.c ├── header.h ├── isr-osc.c ├── isr.c ├── lcd-adafruit.c ├── lcd.c ├── nes.c ├── okLed.c ├── pwm.c ├── q2w │ ├── Makefile │ ├── binary.c │ ├── blink-io.c │ ├── blink.c │ ├── blink.sh │ ├── bright.c │ ├── button.c │ └── volts.c ├── rht03.c ├── serialRead.c ├── serialTest.c ├── servo.c ├── softPwm.c ├── softTone.c ├── speed.c ├── te.c ├── tser.c ├── wfi.c └── xserv.c ├── gpio ├── COPYING.LESSER ├── Makefile ├── extensions.c ├── extensions.h ├── gpio.1 ├── gpio.c ├── pins.c ├── pintest ├── readall.c └── test.sh ├── pins ├── Makefile ├── pins.pdf └── pins.tex └── wiringPi ├── COPYING.LESSER ├── Makefile ├── drcSerial.c ├── drcSerial.h ├── max31855.c ├── max31855.h ├── max5322.c ├── max5322.h ├── mcp23008.c ├── mcp23008.h ├── mcp23016.c ├── mcp23016.h ├── mcp23016reg.h ├── mcp23017.c ├── mcp23017.h ├── mcp23s08.c ├── mcp23s08.h ├── mcp23s17.c ├── mcp23s17.h ├── mcp23x08.h ├── mcp23x0817.h ├── mcp3002.c ├── mcp3002.h ├── mcp3004.c ├── mcp3004.h ├── mcp3422.c ├── mcp3422.h ├── mcp4802.c ├── mcp4802.h ├── pcf8574.c ├── pcf8574.h ├── pcf8591.c ├── pcf8591.h ├── piHiPri.c ├── piThread.c ├── sn3218.c ├── sn3218.h ├── softPwm.c ├── softPwm.h ├── softServo.c ├── softServo.h ├── softTone.c ├── softTone.h ├── sr595.c ├── sr595.h ├── wiringPi.c ├── wiringPi.h ├── wiringPiI2C.c ├── wiringPiI2C.h ├── wiringPiSPI.c ├── wiringPiSPI.h ├── wiringSerial.c ├── wiringSerial.h ├── wiringShift.c └── wiringShift.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/LICENSE -------------------------------------------------------------------------------- /People: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/People -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/README.md -------------------------------------------------------------------------------- /devLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/Makefile -------------------------------------------------------------------------------- /devLib/ds1302.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/ds1302.c -------------------------------------------------------------------------------- /devLib/ds1302.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/ds1302.h -------------------------------------------------------------------------------- /devLib/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/font.h -------------------------------------------------------------------------------- /devLib/gertboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/gertboard.c -------------------------------------------------------------------------------- /devLib/gertboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/gertboard.h -------------------------------------------------------------------------------- /devLib/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/lcd.c -------------------------------------------------------------------------------- /devLib/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/lcd.h -------------------------------------------------------------------------------- /devLib/lcd128x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/lcd128x64.c -------------------------------------------------------------------------------- /devLib/lcd128x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/lcd128x64.h -------------------------------------------------------------------------------- /devLib/maxdetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/maxdetect.c -------------------------------------------------------------------------------- /devLib/maxdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/maxdetect.h -------------------------------------------------------------------------------- /devLib/piFace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/piFace.c -------------------------------------------------------------------------------- /devLib/piFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/piFace.h -------------------------------------------------------------------------------- /devLib/piFaceOld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/piFaceOld.c -------------------------------------------------------------------------------- /devLib/piGlow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/piGlow.c -------------------------------------------------------------------------------- /devLib/piGlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/piGlow.h -------------------------------------------------------------------------------- /devLib/piNes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/piNes.c -------------------------------------------------------------------------------- /devLib/piNes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/devLib/piNes.h -------------------------------------------------------------------------------- /examples/BProTest/lnIOBoard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/BProTest/lnIOBoard -------------------------------------------------------------------------------- /examples/BProTest/lnIOBoard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/BProTest/lnIOBoard.c -------------------------------------------------------------------------------- /examples/BProTest/testLedCon6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/BProTest/testLedCon6.c -------------------------------------------------------------------------------- /examples/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/COPYING.LESSER -------------------------------------------------------------------------------- /examples/Gertboard/7segments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/Gertboard/7segments.c -------------------------------------------------------------------------------- /examples/Gertboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/Gertboard/Makefile -------------------------------------------------------------------------------- /examples/Gertboard/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/Gertboard/buttons.c -------------------------------------------------------------------------------- /examples/Gertboard/gertboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/Gertboard/gertboard.c -------------------------------------------------------------------------------- /examples/Gertboard/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/Gertboard/record.c -------------------------------------------------------------------------------- /examples/Gertboard/temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/Gertboard/temperature.c -------------------------------------------------------------------------------- /examples/Gertboard/voltmeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/Gertboard/voltmeter.c -------------------------------------------------------------------------------- /examples/Gertboard/vumeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/Gertboard/vumeter.c -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/PiFace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiFace/Makefile -------------------------------------------------------------------------------- /examples/PiFace/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiFace/blink.c -------------------------------------------------------------------------------- /examples/PiFace/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiFace/buttons.c -------------------------------------------------------------------------------- /examples/PiFace/ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiFace/ladder.c -------------------------------------------------------------------------------- /examples/PiFace/metro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiFace/metro.c -------------------------------------------------------------------------------- /examples/PiFace/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiFace/motor.c -------------------------------------------------------------------------------- /examples/PiFace/reaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiFace/reaction.c -------------------------------------------------------------------------------- /examples/PiGlow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiGlow/Makefile -------------------------------------------------------------------------------- /examples/PiGlow/piGlow0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiGlow/piGlow0.c -------------------------------------------------------------------------------- /examples/PiGlow/piGlow1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiGlow/piGlow1.c -------------------------------------------------------------------------------- /examples/PiGlow/piglow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/PiGlow/piglow.c -------------------------------------------------------------------------------- /examples/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/README.TXT -------------------------------------------------------------------------------- /examples/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/blink.c -------------------------------------------------------------------------------- /examples/blink.rtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/blink.rtb -------------------------------------------------------------------------------- /examples/blink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/blink.sh -------------------------------------------------------------------------------- /examples/blink12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/blink12.c -------------------------------------------------------------------------------- /examples/blink12drcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/blink12drcs.c -------------------------------------------------------------------------------- /examples/blink6drcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/blink6drcs.c -------------------------------------------------------------------------------- /examples/blink8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/blink8.c -------------------------------------------------------------------------------- /examples/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/clock.c -------------------------------------------------------------------------------- /examples/delayTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/delayTest.c -------------------------------------------------------------------------------- /examples/ds1302.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/ds1302.c -------------------------------------------------------------------------------- /examples/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/echo.c -------------------------------------------------------------------------------- /examples/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/header.h -------------------------------------------------------------------------------- /examples/isr-osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/isr-osc.c -------------------------------------------------------------------------------- /examples/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/isr.c -------------------------------------------------------------------------------- /examples/lcd-adafruit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/lcd-adafruit.c -------------------------------------------------------------------------------- /examples/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/lcd.c -------------------------------------------------------------------------------- /examples/nes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/nes.c -------------------------------------------------------------------------------- /examples/okLed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/okLed.c -------------------------------------------------------------------------------- /examples/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/pwm.c -------------------------------------------------------------------------------- /examples/q2w/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/q2w/Makefile -------------------------------------------------------------------------------- /examples/q2w/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/q2w/binary.c -------------------------------------------------------------------------------- /examples/q2w/blink-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/q2w/blink-io.c -------------------------------------------------------------------------------- /examples/q2w/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/q2w/blink.c -------------------------------------------------------------------------------- /examples/q2w/blink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/q2w/blink.sh -------------------------------------------------------------------------------- /examples/q2w/bright.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/q2w/bright.c -------------------------------------------------------------------------------- /examples/q2w/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/q2w/button.c -------------------------------------------------------------------------------- /examples/q2w/volts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/q2w/volts.c -------------------------------------------------------------------------------- /examples/rht03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/rht03.c -------------------------------------------------------------------------------- /examples/serialRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/serialRead.c -------------------------------------------------------------------------------- /examples/serialTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/serialTest.c -------------------------------------------------------------------------------- /examples/servo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/servo.c -------------------------------------------------------------------------------- /examples/softPwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/softPwm.c -------------------------------------------------------------------------------- /examples/softTone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/softTone.c -------------------------------------------------------------------------------- /examples/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/speed.c -------------------------------------------------------------------------------- /examples/te.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/te.c -------------------------------------------------------------------------------- /examples/tser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/tser.c -------------------------------------------------------------------------------- /examples/wfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/wfi.c -------------------------------------------------------------------------------- /examples/xserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/examples/xserv.c -------------------------------------------------------------------------------- /gpio/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/COPYING.LESSER -------------------------------------------------------------------------------- /gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/Makefile -------------------------------------------------------------------------------- /gpio/extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/extensions.c -------------------------------------------------------------------------------- /gpio/extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/extensions.h -------------------------------------------------------------------------------- /gpio/gpio.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/gpio.1 -------------------------------------------------------------------------------- /gpio/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/gpio.c -------------------------------------------------------------------------------- /gpio/pins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/pins.c -------------------------------------------------------------------------------- /gpio/pintest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/pintest -------------------------------------------------------------------------------- /gpio/readall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/readall.c -------------------------------------------------------------------------------- /gpio/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/gpio/test.sh -------------------------------------------------------------------------------- /pins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/pins/Makefile -------------------------------------------------------------------------------- /pins/pins.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/pins/pins.pdf -------------------------------------------------------------------------------- /pins/pins.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/pins/pins.tex -------------------------------------------------------------------------------- /wiringPi/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/COPYING.LESSER -------------------------------------------------------------------------------- /wiringPi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/Makefile -------------------------------------------------------------------------------- /wiringPi/drcSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/drcSerial.c -------------------------------------------------------------------------------- /wiringPi/drcSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/drcSerial.h -------------------------------------------------------------------------------- /wiringPi/max31855.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/max31855.c -------------------------------------------------------------------------------- /wiringPi/max31855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/max31855.h -------------------------------------------------------------------------------- /wiringPi/max5322.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/max5322.c -------------------------------------------------------------------------------- /wiringPi/max5322.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/max5322.h -------------------------------------------------------------------------------- /wiringPi/mcp23008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23008.c -------------------------------------------------------------------------------- /wiringPi/mcp23008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23008.h -------------------------------------------------------------------------------- /wiringPi/mcp23016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23016.c -------------------------------------------------------------------------------- /wiringPi/mcp23016.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23016.h -------------------------------------------------------------------------------- /wiringPi/mcp23016reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23016reg.h -------------------------------------------------------------------------------- /wiringPi/mcp23017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23017.c -------------------------------------------------------------------------------- /wiringPi/mcp23017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23017.h -------------------------------------------------------------------------------- /wiringPi/mcp23s08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23s08.c -------------------------------------------------------------------------------- /wiringPi/mcp23s08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23s08.h -------------------------------------------------------------------------------- /wiringPi/mcp23s17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23s17.c -------------------------------------------------------------------------------- /wiringPi/mcp23s17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23s17.h -------------------------------------------------------------------------------- /wiringPi/mcp23x08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23x08.h -------------------------------------------------------------------------------- /wiringPi/mcp23x0817.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp23x0817.h -------------------------------------------------------------------------------- /wiringPi/mcp3002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp3002.c -------------------------------------------------------------------------------- /wiringPi/mcp3002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp3002.h -------------------------------------------------------------------------------- /wiringPi/mcp3004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp3004.c -------------------------------------------------------------------------------- /wiringPi/mcp3004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp3004.h -------------------------------------------------------------------------------- /wiringPi/mcp3422.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp3422.c -------------------------------------------------------------------------------- /wiringPi/mcp3422.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp3422.h -------------------------------------------------------------------------------- /wiringPi/mcp4802.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp4802.c -------------------------------------------------------------------------------- /wiringPi/mcp4802.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/mcp4802.h -------------------------------------------------------------------------------- /wiringPi/pcf8574.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/pcf8574.c -------------------------------------------------------------------------------- /wiringPi/pcf8574.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/pcf8574.h -------------------------------------------------------------------------------- /wiringPi/pcf8591.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/pcf8591.c -------------------------------------------------------------------------------- /wiringPi/pcf8591.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/pcf8591.h -------------------------------------------------------------------------------- /wiringPi/piHiPri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/piHiPri.c -------------------------------------------------------------------------------- /wiringPi/piThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/piThread.c -------------------------------------------------------------------------------- /wiringPi/sn3218.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/sn3218.c -------------------------------------------------------------------------------- /wiringPi/sn3218.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/sn3218.h -------------------------------------------------------------------------------- /wiringPi/softPwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/softPwm.c -------------------------------------------------------------------------------- /wiringPi/softPwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/softPwm.h -------------------------------------------------------------------------------- /wiringPi/softServo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/softServo.c -------------------------------------------------------------------------------- /wiringPi/softServo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/softServo.h -------------------------------------------------------------------------------- /wiringPi/softTone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/softTone.c -------------------------------------------------------------------------------- /wiringPi/softTone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/softTone.h -------------------------------------------------------------------------------- /wiringPi/sr595.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/sr595.c -------------------------------------------------------------------------------- /wiringPi/sr595.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/sr595.h -------------------------------------------------------------------------------- /wiringPi/wiringPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringPi.c -------------------------------------------------------------------------------- /wiringPi/wiringPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringPi.h -------------------------------------------------------------------------------- /wiringPi/wiringPiI2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringPiI2C.c -------------------------------------------------------------------------------- /wiringPi/wiringPiI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringPiI2C.h -------------------------------------------------------------------------------- /wiringPi/wiringPiSPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringPiSPI.c -------------------------------------------------------------------------------- /wiringPi/wiringPiSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringPiSPI.h -------------------------------------------------------------------------------- /wiringPi/wiringSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringSerial.c -------------------------------------------------------------------------------- /wiringPi/wiringSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringSerial.h -------------------------------------------------------------------------------- /wiringPi/wiringShift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringShift.c -------------------------------------------------------------------------------- /wiringPi/wiringShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertyzp/WiringNP/HEAD/wiringPi/wiringShift.h --------------------------------------------------------------------------------