├── LICENSE ├── README.md ├── examples ├── ControllerTest │ └── ControllerTest.ino ├── GameportToUSB │ ├── GameportToUSB.ino │ ├── LICENSE │ └── README.md └── GenesisToXBox360 │ └── GenesisToXBox360.ino ├── keywords.txt ├── library.properties └── src ├── GameControllers.h ├── SegaController.cpp ├── SegaController.h ├── debouncer.h ├── dwt.h ├── gamecube.cpp ├── gameport.cpp ├── genesis.cpp └── nunchuck.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/README.md -------------------------------------------------------------------------------- /examples/ControllerTest/ControllerTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/examples/ControllerTest/ControllerTest.ino -------------------------------------------------------------------------------- /examples/GameportToUSB/GameportToUSB.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/examples/GameportToUSB/GameportToUSB.ino -------------------------------------------------------------------------------- /examples/GameportToUSB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/examples/GameportToUSB/LICENSE -------------------------------------------------------------------------------- /examples/GameportToUSB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/examples/GameportToUSB/README.md -------------------------------------------------------------------------------- /examples/GenesisToXBox360/GenesisToXBox360.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/examples/GenesisToXBox360/GenesisToXBox360.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/library.properties -------------------------------------------------------------------------------- /src/GameControllers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/src/GameControllers.h -------------------------------------------------------------------------------- /src/SegaController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/src/SegaController.cpp -------------------------------------------------------------------------------- /src/SegaController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/src/SegaController.h -------------------------------------------------------------------------------- /src/debouncer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/src/debouncer.h -------------------------------------------------------------------------------- /src/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/src/dwt.h -------------------------------------------------------------------------------- /src/gamecube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/src/gamecube.cpp -------------------------------------------------------------------------------- /src/gameport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/src/gameport.cpp -------------------------------------------------------------------------------- /src/genesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/src/genesis.cpp -------------------------------------------------------------------------------- /src/nunchuck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpruss/GameControllersSTM32/HEAD/src/nunchuck.cpp --------------------------------------------------------------------------------