https://github.com/kneemund/rwug-server
Remote Wii U GamePad (Server) for Linux, allowing the use of a Wii U GamePad as a remote controller for PC.
https://github.com/kneemund/rwug-server
controller gamepad wiiu wiiu-homebrew
Last synced: 8 months ago
JSON representation
Remote Wii U GamePad (Server) for Linux, allowing the use of a Wii U GamePad as a remote controller for PC.
- Host: GitHub
- URL: https://github.com/kneemund/rwug-server
- Owner: Kneemund
- License: mit
- Created: 2021-11-09T17:12:16.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-22T14:55:37.000Z (almost 4 years ago)
- Last Synced: 2025-01-12T19:35:58.609Z (9 months ago)
- Topics: controller, gamepad, wiiu, wiiu-homebrew
- Language: C
- Homepage:
- Size: 43.9 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## RWUG Server
A UDP server for the Wii U GamePad, which emulates a controller and is written in C for GNU/Linux. \
Running the [client](https://github.com/Kneemund/RWUG-Client) requires a jailbroken Wii U with Homebrew.The server uses the Wii U GamePad's accelerometer and gyroscope data for emulating a second evdev device, which is called "Wii U GamePad IMU". \
This can be combined with [evdevhook](https://github.com/v1993/evdevhook) to host a DSU/Cemuhook server, as most emulators rely on this to get motion data. \
The profile should look like this:```json
{
"profiles": {
"RWUG": {
"gyroSensitivity": 1.0,
"accel": "x+y+z+",
"gyro": "x+y+z+"
}
},
"devices": [
{
"name": "Wii U GamePad IMU",
"profile": "RWUG"
}
]
}
```