├── LICENSE ├── README.md ├── alsaPi ├── alsaPi.c ├── alsaPi.h ├── listControls.c ├── listMixers.c ├── setVolControl.c └── setVolMixer.c ├── binaries └── piRotEnc.tcz ├── chipsPi ├── C200 │ └── README.md ├── bcm2835 │ ├── spi │ │ ├── bcm2835spi.c │ │ └── bcm2835spi.h │ └── testDT.c ├── mcp23017 │ ├── README.md │ ├── mcp23017.c │ ├── mcp23017.h │ └── testmcp23017.c └── mcp42x1 │ ├── README.md │ ├── mcp42x1.c │ ├── mcp42x1.h │ └── testmcp42x1.c ├── deprecated ├── piLCD.c └── rotencvol.c ├── displayPi ├── hd44780gpio │ ├── README.md │ ├── hd44780gpio.c │ ├── hd44780gpio.h │ └── testhd44780gpio.c ├── hd44780i2c │ ├── README.md │ ├── hd44780i2c.c │ ├── hd44780i2c.h │ ├── mcp23017.c │ ├── mcp23017.h │ ├── testhd44780i2c.c │ └── testmcp23017.c └── ssd1322-spi │ ├── README.md │ ├── fb │ ├── README.md │ ├── fb-query.c │ └── fb-test2.c │ ├── fbtft │ ├── fb_ssd1322.c │ └── ssd1322-spi-overlay.dts │ ├── old │ ├── graphics.h │ ├── ssd1322-fb.c │ ├── ssd1322-spi.c │ ├── ssd1322-spi.h │ └── test-ssd1322-spi.c │ ├── ssd1322-commands.info │ └── tools │ ├── fontconvert.c │ └── unpacked.txt ├── gpioPi └── testSysPi.c ├── infoPi └── piInfo.c ├── meterPi ├── README.md ├── hd44780i2c.c ├── hd44780i2c.h ├── mcp23017.c ├── mcp23017.h ├── meterPi.c ├── meterPi.h ├── testmeterPi-lcd.c └── testmeterPi-ncurses.c ├── piRotEnc ├── alsaPi.c ├── alsaPi.h ├── piRotEnc.c ├── rotencPi.c └── rotencPi.h ├── popcornPi ├── amg19264Pi.c └── popcornPi.c ├── rotencPi ├── rotencPi.c ├── rotencPi.h └── testrotencPi.c └── streamPi └── thx1138.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/README.md -------------------------------------------------------------------------------- /alsaPi/alsaPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/alsaPi/alsaPi.c -------------------------------------------------------------------------------- /alsaPi/alsaPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/alsaPi/alsaPi.h -------------------------------------------------------------------------------- /alsaPi/listControls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/alsaPi/listControls.c -------------------------------------------------------------------------------- /alsaPi/listMixers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/alsaPi/listMixers.c -------------------------------------------------------------------------------- /alsaPi/setVolControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/alsaPi/setVolControl.c -------------------------------------------------------------------------------- /alsaPi/setVolMixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/alsaPi/setVolMixer.c -------------------------------------------------------------------------------- /binaries/piRotEnc.tcz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/binaries/piRotEnc.tcz -------------------------------------------------------------------------------- /chipsPi/C200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/C200/README.md -------------------------------------------------------------------------------- /chipsPi/bcm2835/spi/bcm2835spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/bcm2835/spi/bcm2835spi.c -------------------------------------------------------------------------------- /chipsPi/bcm2835/spi/bcm2835spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/bcm2835/spi/bcm2835spi.h -------------------------------------------------------------------------------- /chipsPi/bcm2835/testDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/bcm2835/testDT.c -------------------------------------------------------------------------------- /chipsPi/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/mcp23017/README.md -------------------------------------------------------------------------------- /chipsPi/mcp23017/mcp23017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/mcp23017/mcp23017.c -------------------------------------------------------------------------------- /chipsPi/mcp23017/mcp23017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/mcp23017/mcp23017.h -------------------------------------------------------------------------------- /chipsPi/mcp23017/testmcp23017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/mcp23017/testmcp23017.c -------------------------------------------------------------------------------- /chipsPi/mcp42x1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/mcp42x1/README.md -------------------------------------------------------------------------------- /chipsPi/mcp42x1/mcp42x1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/mcp42x1/mcp42x1.c -------------------------------------------------------------------------------- /chipsPi/mcp42x1/mcp42x1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/mcp42x1/mcp42x1.h -------------------------------------------------------------------------------- /chipsPi/mcp42x1/testmcp42x1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/chipsPi/mcp42x1/testmcp42x1.c -------------------------------------------------------------------------------- /deprecated/piLCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/deprecated/piLCD.c -------------------------------------------------------------------------------- /deprecated/rotencvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/deprecated/rotencvol.c -------------------------------------------------------------------------------- /displayPi/hd44780gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780gpio/README.md -------------------------------------------------------------------------------- /displayPi/hd44780gpio/hd44780gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780gpio/hd44780gpio.c -------------------------------------------------------------------------------- /displayPi/hd44780gpio/hd44780gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780gpio/hd44780gpio.h -------------------------------------------------------------------------------- /displayPi/hd44780gpio/testhd44780gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780gpio/testhd44780gpio.c -------------------------------------------------------------------------------- /displayPi/hd44780i2c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780i2c/README.md -------------------------------------------------------------------------------- /displayPi/hd44780i2c/hd44780i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780i2c/hd44780i2c.c -------------------------------------------------------------------------------- /displayPi/hd44780i2c/hd44780i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780i2c/hd44780i2c.h -------------------------------------------------------------------------------- /displayPi/hd44780i2c/mcp23017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780i2c/mcp23017.c -------------------------------------------------------------------------------- /displayPi/hd44780i2c/mcp23017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780i2c/mcp23017.h -------------------------------------------------------------------------------- /displayPi/hd44780i2c/testhd44780i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780i2c/testhd44780i2c.c -------------------------------------------------------------------------------- /displayPi/hd44780i2c/testmcp23017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/hd44780i2c/testmcp23017.c -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/README.md -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/fb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/fb/README.md -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/fb/fb-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/fb/fb-query.c -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/fb/fb-test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/fb/fb-test2.c -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/fbtft/fb_ssd1322.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/fbtft/fb_ssd1322.c -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/fbtft/ssd1322-spi-overlay.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/fbtft/ssd1322-spi-overlay.dts -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/old/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/old/graphics.h -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/old/ssd1322-fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/old/ssd1322-fb.c -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/old/ssd1322-spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/old/ssd1322-spi.c -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/old/ssd1322-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/old/ssd1322-spi.h -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/old/test-ssd1322-spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/old/test-ssd1322-spi.c -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/ssd1322-commands.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/ssd1322-commands.info -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/tools/fontconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/tools/fontconvert.c -------------------------------------------------------------------------------- /displayPi/ssd1322-spi/tools/unpacked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/displayPi/ssd1322-spi/tools/unpacked.txt -------------------------------------------------------------------------------- /gpioPi/testSysPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/gpioPi/testSysPi.c -------------------------------------------------------------------------------- /infoPi/piInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/infoPi/piInfo.c -------------------------------------------------------------------------------- /meterPi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/meterPi/README.md -------------------------------------------------------------------------------- /meterPi/hd44780i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/meterPi/hd44780i2c.c -------------------------------------------------------------------------------- /meterPi/hd44780i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/meterPi/hd44780i2c.h -------------------------------------------------------------------------------- /meterPi/mcp23017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/meterPi/mcp23017.c -------------------------------------------------------------------------------- /meterPi/mcp23017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/meterPi/mcp23017.h -------------------------------------------------------------------------------- /meterPi/meterPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/meterPi/meterPi.c -------------------------------------------------------------------------------- /meterPi/meterPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/meterPi/meterPi.h -------------------------------------------------------------------------------- /meterPi/testmeterPi-lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/meterPi/testmeterPi-lcd.c -------------------------------------------------------------------------------- /meterPi/testmeterPi-ncurses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/meterPi/testmeterPi-ncurses.c -------------------------------------------------------------------------------- /piRotEnc/alsaPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/piRotEnc/alsaPi.c -------------------------------------------------------------------------------- /piRotEnc/alsaPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/piRotEnc/alsaPi.h -------------------------------------------------------------------------------- /piRotEnc/piRotEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/piRotEnc/piRotEnc.c -------------------------------------------------------------------------------- /piRotEnc/rotencPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/piRotEnc/rotencPi.c -------------------------------------------------------------------------------- /piRotEnc/rotencPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/piRotEnc/rotencPi.h -------------------------------------------------------------------------------- /popcornPi/amg19264Pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/popcornPi/amg19264Pi.c -------------------------------------------------------------------------------- /popcornPi/popcornPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/popcornPi/popcornPi.c -------------------------------------------------------------------------------- /rotencPi/rotencPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/rotencPi/rotencPi.c -------------------------------------------------------------------------------- /rotencPi/rotencPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/rotencPi/rotencPi.h -------------------------------------------------------------------------------- /rotencPi/testrotencPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/rotencPi/testrotencPi.c -------------------------------------------------------------------------------- /streamPi/thx1138.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidaf/raspberryPi/HEAD/streamPi/thx1138.c --------------------------------------------------------------------------------