Questions tagged [wiiuse]

A library written in C that connects with several Nintendo Wii remotes.

9 questions
21
votes
1 answer

Problems using the wiiuse library and its events

I recently downloaded the wiiuse library and am having problems using it. I wrote a small code but the remote disconnects just after the connection. Even the code present at the author's website doesn't work; the same happens when I try that code. I…
Saurabh Manchanda
  • 1,115
  • 1
  • 9
  • 21
4
votes
1 answer

Wii MotionPlus support

I am developing a PC application that interacts with the Wiimote. So far I have been using the wiiuse library, which has worked great. However, wiiuse does not support the MotionPlus extension. I have heard of extensions to implement this by Dolphin…
hoju
  • 28,392
  • 37
  • 134
  • 178
3
votes
1 answer

Install libbluetooth-dev on Mac

I've been looking forward to using the wiiuse library on my Mac. When trying to install the library, when compiling with make I was told this : >make wiiuse gcc -Wall -pipe -fPIC -funroll-loops -O2 -I. -c classic.c -o…
ggrelet
  • 1,071
  • 7
  • 22
3
votes
3 answers

Controlling mouse in linux

Basically I'm currently using the wiiuse library to get the wiimote working on linux. I want to now be able to control the mouse through the IR readings. Can somebody point me in the right direction as to how to approach this? I know of uinput but…
John Jiang
  • 11,069
  • 12
  • 51
  • 60
1
vote
1 answer

Compiling a C library for use with a python wrapper on mac OSX 10.8

So I am noob who has been studying python over the past few months. I recently discovered a python library called PyWiiUse and wanted to use it to do some fun stuff with the WiiMote. Since the library is just a wrapper of the C library WiiUse, I…
karosc
  • 31
  • 2
1
vote
1 answer

SDK for Nintendo's wii

can any one tell me from where i can download nintendo's wii sdk. I am not able to find it anywhere. Also can I get this SDK for free, or can I just get SDK doc?
Arvin Mittal
  • 11
  • 1
  • 4
0
votes
0 answers

Wiiuse library - how to calculate the quaternion from the wm->exp.mp.angle_rate_gyro like the DSU Controller test

I currently have the wiiuse lib op and running with the motion plus output the angle_rate from the gyro. Now i want this to give me the output in angles either euler representation or best of with quaternions, and i am a little stuck here. any …
Rasmus
  • 1
0
votes
0 answers

WiiUse library and MAC El Capitan Undefined symbols

I'm trying to install WiiUse (https://github.com/rpavlik/wiiuse) on my El Capitan. First I downloaded all the git, then I followed the instruction and when I try to run the example I get this error: ld: symbol(s) not found for architecture x86_64 …
Zeno Trevisan
  • 517
  • 1
  • 8
  • 23
0
votes
1 answer

Including wiiuse.h in C

I'm running OSX 10.9.2 I've successfully compiled and run the example program for wiiuse. However, this meant making a makefile with CMake, then running make. I am stuck, though, as to how I can compile my own program using this library. As a first…