Add support for third party wiimotes#26
Open
tobigun wants to merge 1 commit into
Open
Conversation
tobigun
force-pushed
the
third_party_wiimote_support
branch
from
June 2, 2026 20:42
d736ee3 to
ceaf8b4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
If the "SYNC" button in WiitarThing is pressed, SyncWindow.Sync() checks for devices with device names that start with "Nintendo RVL-CNT-01". This also works with third party wiimotes.
But after the device is paired a different approach is used by DeviceInfo.GetPaths() (called by MainWindow.Refresh()) to find already paired devices: it checks if the original (Nintendo) VID and PID is present. This is not the case for third party devices so they are never shown in the "Connected Device List".
As even the Wii and WiiU do not check for the VID and PID it would be nice if WiitarThing also did not check these.
The Pull-Requests changes the DeviceInfo.GetPaths() to check for the device name.
For backwards compatibility the VID and PID is also checked if the device name is missing.
It also fixes the erroneously detection of a Wiimote Plus as a Wii U Pro controller as Wii U Pro and Wiimote Plus share the same VID/PID.