├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── examples ├── 8BitDo Zero 2 gamepad ├── 8bitDo Micro gamepad ├── CheerTok Air ├── D01 ├── D01 Pro ├── D02 ├── LIFT └── T01 └── src ├── btpt.cc ├── btpt.h ├── eventcodes.cc └── eventcodes.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/README.md -------------------------------------------------------------------------------- /examples/8BitDo Zero 2 gamepad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/examples/8BitDo Zero 2 gamepad -------------------------------------------------------------------------------- /examples/8bitDo Micro gamepad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/examples/8bitDo Micro gamepad -------------------------------------------------------------------------------- /examples/CheerTok Air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/examples/CheerTok Air -------------------------------------------------------------------------------- /examples/D01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/examples/D01 -------------------------------------------------------------------------------- /examples/D01 Pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/examples/D01 Pro -------------------------------------------------------------------------------- /examples/D02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/examples/D02 -------------------------------------------------------------------------------- /examples/LIFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/examples/LIFT -------------------------------------------------------------------------------- /examples/T01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/examples/T01 -------------------------------------------------------------------------------- /src/btpt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/src/btpt.cc -------------------------------------------------------------------------------- /src/btpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/src/btpt.h -------------------------------------------------------------------------------- /src/eventcodes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/src/eventcodes.cc -------------------------------------------------------------------------------- /src/eventcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsowell/kobo-btpt/HEAD/src/eventcodes.h --------------------------------------------------------------------------------