├── .github └── workflows │ └── build.yml ├── LICENSE ├── README.md ├── hardware ├── README.md ├── gerbers │ ├── spi2par2019_backpack.zip │ └── spi2par2019_faithful.zip ├── spi2par2019backpack.brd ├── spi2par2019backpack.sch ├── spi2par2019faithful.brd └── spi2par2019faithful.sch ├── images ├── arduino.jpg ├── boards.jpg ├── gerbers.png ├── ingame_temp.jpg ├── prog1.jpg ├── prog2.jpg ├── prog3.jpg ├── prog4.jpg ├── prog5.jpg ├── prog6.jpg ├── prog7.jpg ├── spi2par_connection.jpg └── spi2par_connection2.jpg ├── schematic_spi2par2019backpack.pdf ├── schematic_spi2par2019faithful.pdf ├── spi2par2019.ino ├── src └── SMWire │ ├── SMWire.cpp │ ├── SMWire.h │ └── utility │ ├── twi.c │ └── twi.h ├── xboxsmbus.h └── xeniumspi.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/README.md -------------------------------------------------------------------------------- /hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/hardware/README.md -------------------------------------------------------------------------------- /hardware/gerbers/spi2par2019_backpack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/hardware/gerbers/spi2par2019_backpack.zip -------------------------------------------------------------------------------- /hardware/gerbers/spi2par2019_faithful.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/hardware/gerbers/spi2par2019_faithful.zip -------------------------------------------------------------------------------- /hardware/spi2par2019backpack.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/hardware/spi2par2019backpack.brd -------------------------------------------------------------------------------- /hardware/spi2par2019backpack.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/hardware/spi2par2019backpack.sch -------------------------------------------------------------------------------- /hardware/spi2par2019faithful.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/hardware/spi2par2019faithful.brd -------------------------------------------------------------------------------- /hardware/spi2par2019faithful.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/hardware/spi2par2019faithful.sch -------------------------------------------------------------------------------- /images/arduino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/arduino.jpg -------------------------------------------------------------------------------- /images/boards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/boards.jpg -------------------------------------------------------------------------------- /images/gerbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/gerbers.png -------------------------------------------------------------------------------- /images/ingame_temp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/ingame_temp.jpg -------------------------------------------------------------------------------- /images/prog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/prog1.jpg -------------------------------------------------------------------------------- /images/prog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/prog2.jpg -------------------------------------------------------------------------------- /images/prog3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/prog3.jpg -------------------------------------------------------------------------------- /images/prog4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/prog4.jpg -------------------------------------------------------------------------------- /images/prog5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/prog5.jpg -------------------------------------------------------------------------------- /images/prog6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/prog6.jpg -------------------------------------------------------------------------------- /images/prog7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/prog7.jpg -------------------------------------------------------------------------------- /images/spi2par_connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/spi2par_connection.jpg -------------------------------------------------------------------------------- /images/spi2par_connection2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/images/spi2par_connection2.jpg -------------------------------------------------------------------------------- /schematic_spi2par2019backpack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/schematic_spi2par2019backpack.pdf -------------------------------------------------------------------------------- /schematic_spi2par2019faithful.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/schematic_spi2par2019faithful.pdf -------------------------------------------------------------------------------- /spi2par2019.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/spi2par2019.ino -------------------------------------------------------------------------------- /src/SMWire/SMWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/src/SMWire/SMWire.cpp -------------------------------------------------------------------------------- /src/SMWire/SMWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/src/SMWire/SMWire.h -------------------------------------------------------------------------------- /src/SMWire/utility/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/src/SMWire/utility/twi.c -------------------------------------------------------------------------------- /src/SMWire/utility/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/src/SMWire/utility/twi.h -------------------------------------------------------------------------------- /xboxsmbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/xboxsmbus.h -------------------------------------------------------------------------------- /xeniumspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/spi2par2019/HEAD/xeniumspi.h --------------------------------------------------------------------------------