shared files for hid support
Go to file
2020-12-16 12:58:00 +01:00
.github/workflows Add Dockerfile, use Github Worksflow instead of travis. 2020-12-16 12:58:00 +01:00
include/controller_patcher Fix types 2018-06-20 15:07:15 +02:00
source Remove newlines at the end of logs 2020-12-16 02:04:31 +01:00
.gitattributes 💥🐫 Added .gitattributes & .gitignore files 2016-04-25 20:21:54 +02:00
.gitignore Environment changes 2020-12-16 01:59:00 +01:00
Dockerfile Add Dockerfile, use Github Worksflow instead of travis. 2020-12-16 12:58:00 +01:00
Makefile Environment changes 2020-12-16 01:59:00 +01:00
README.md Add Dockerfile, use Github Worksflow instead of travis. 2020-12-16 12:58:00 +01:00

What is in this controller_patcher repository

These files are the magic behind tools like HID to VPAD and can used to use your USB HID Device on your WiiU console.

How to create config files

Detailed information about creating config files and adding support for more controller can be found in the wiki

Where can I find config files

Configfiles for all controllers are collection in this repository

Logging usage

To able to use the logging change the "DO_LOGGING" parameter in the Makefile.

Compiling

You need to install all dependencies first!

Install this static library into your wut folder via:

make install

Link the application with

-lcontrollerpatcher

You also need to add the include path to your Makefile. Example:

export INCLUDE	:= [...] -I$(WUT_ROOT)/usr/include

Dependencies

  • wut (WUT branch) for common functions.

Example implementation

How to "install" it

TODO!

ControllerPatcher::Init(NULL); //No custom configuration
ControllerPatcher::disableControllerMapping();
ControllerPatcher::startNetworkServer();
ControllerPatcher::DeInit();
ControllerPatcher::stopNetworkServer();

Credits:

  • Maschell
  • FIX94 - huge thanks to him and his initally created gc-to-vpad. Was a motivation and base to start all this