I am sort of confused on how to access gyroscope data from the wiimotion plus using the wiimote lib beta 1.8. I know for the accelerometer you would do something like this:

Wiimote.WiimoteState.AccelState.Values.X;

For the wiimotion plus, I first need to initialise it by:

Wiimote.InitializeMotionPlus();

After that, I am unsure on how to access the gyro values.

Any help is greatly appreciated.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I made a stupid mistake. This is how it is done:

double x = Wiimote.WiimoteState.MotionPlusState.Values.X;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.