Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wii remote plus #61

Open
everyone-else-stole-the-good-usernames opened this issue Aug 7, 2019 · 2 comments
Open

wii remote plus #61

everyone-else-stole-the-good-usernames opened this issue Aug 7, 2019 · 2 comments

Comments

@everyone-else-stole-the-good-usernames

All buttons are recognised but this does not recognise the wii remote plus's built in wii motion plus

@JulesDeslandes
Copy link

Same issue here

@thebitmaster
Copy link

Thanks for all the hard work on this!
Although I've gotten almost every other feature to work, the API will not detect a known-good Wiimotion Plus plugged into the Wiimote. I've tested it with other libraries to make sure it's working, and it is, but all my attempts to identify or activate it have failed. For instance:

` bool activated = false;
remote.RequestIdentifyWiiMotionPlus();
//remote.SendStatusInfoRequest(); // Requests Status Report

Console.WriteLine("remote.current_ext " + remote.current_ext);
Console.WriteLine("remote.ext_connected " + remote.Status.ext_connected);
Console.WriteLine("remote.wmp_attached " + remote.wmp_attached);
if (!activated && remote.wmp_attached)
{
remote.ActivateWiiMotionPlus();
activated = true;
Console.WriteLine("Activated WiiMotionPlus!");
Console.WriteLine("WiiMote Type :" + remote.MotionPlus.ExtensionConnected);

}
else Console.WriteLine("No WiiMotion Plus Detected!");
if (activated && remote.current_ext == ExtensionController.MOTIONPLUS)
{
MotionPlusData data = remote.MotionPlus; // data!
float dPitch = data.PitchSpeed;
Console.WriteLine("PitchSpeed is " + dPitch);
// Use the data...
}
Yields:remote.current_ext NONE
remote.ext_connected False
remote.wmp_attached False
No WiiMotion Plus Detected!
NONE
Is Wii Motion Plus Attached? False`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants