Questions tagged [wiimote]

The Wii Remote, also known as the Wiimote, is the primary controller for Nintendo's Wii console.

89 questions
4
votes
2 answers

What is the refresh rate of the accelerometer in the wiimote?

Does anyone know what the refresh rate of the accelerometer in the wiimote is? Is there a way to find out using Visual C#?
Omar
  • 2,155
  • 4
  • 24
  • 38
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
4
votes
0 answers

WiiRemoteJ Sound Issue (wiimote speaker)

I was wondering if anyone can help, I'm using the WiiRemoteJ Java library for connecting to a Wiimote (Wii Remote). I have the supplied WRLIpml test application up and running but I'm having some problems with the sound being sent to the wiimotes…
carok
  • 648
  • 6
  • 14
3
votes
1 answer

using wiimote accelerometers to control a robotic arm

I am trying to use the wiimote accelerometers to control a robotic arm. I have the buttons workings and currently controlling the arm. Now i want to implement the wiimote accelerometers to control a robotic arm. has anyone worked with the wiimote…
e_hello
  • 51
  • 1
  • 1
  • 5
3
votes
1 answer

Windows HID device driver installation for Wiimote. Can we improve it?

We’re working on a project in which we have a program that connects to a Wiimote and reads data from it. It works, however we would like to improve the connection process. We often have to make several connection attempts before we successfully…
cebru
  • 1,432
  • 15
  • 10
3
votes
0 answers

Is it possible to use a wiimote as an android game controller?

I have been interested in using a Wiimote as a controller for Android for a long time. I know this was possible many years ago before the methods for creating an l2cap socket were removed from the Android api. In api 29 (Android 10) methods for…
user154
  • 41
  • 5
3
votes
2 answers

Good portable wiimote library with sound support?

I'm lookin for a portable wiimote library. I want to use the wiimote for the hardware it has (but I don't need to access any data stored on it). Required features: access to all the buttons (as an exception, no use of the power button is OK) make…
Jonas Kölker
  • 7,680
  • 3
  • 44
  • 51
3
votes
9 answers

Python with Wiimote using pywiiuse module

After seeing the abilities and hackibility of wiimotes I really want to use it in my 'Intro to programming' final. Everyone must make a python program and present it to the class. I want to make a game with pygame incorporating a wiimote. I found…
Anon
3
votes
1 answer

HidDevice.FromIdAsync returns null with readwrite

I am trying to port a library from classic desktop to UWP. It all works like planned except for one thing. When I try to open a HID connection to the device(A wiimote) it won't connect if the permissions are on readwrite. It does work with read only…
Starlight_NL
  • 81
  • 1
  • 9
3
votes
1 answer

Are there any good Wiimote APIs (C/C++) out there that include Wii Motion Plus?

Hello I was looking around on the internet and I was unable to find anything concrete. I would like to find a good Wiimote API (in C or C++) that also implements usage of the Wii Motion Plus accessory. If anyone knows of any good ones it would be…
Sam F
  • 33
  • 1
  • 3
3
votes
1 answer

Ouptut PIN from a MAC address using char

I am absolutly not doing C, but for a small thing, I need to make a very simple function. I have problem understanding the result. I have a MAC address and I need to output the PIN code. (wiimote) I got this function so far int main(int argc, char…
orugari
  • 414
  • 3
  • 17
3
votes
0 answers

Sending or receiving data from and to a Wiimote using chrome.hid and the default Windows 7 HID driver does not work

and thanks for taking the time to read this. Concept Connect a wiimote to a windows (or mac) using the default HID driver and service (because BT L2CAP is not yet supported in chrome.bluetoothSocket). I wan't to send and receive data from the…
David
  • 121
  • 1
  • 4
3
votes
1 answer

Android wiimote socket fails to connect

I'm trying to connect a wiimote to my OUYA (running Android 4.1.2). I've managed to get wiimotes to connect using other apps like Bluez-IME, so I know it is possible, but I'd like to be able to do it myself This is what I have so far: private void…
James Coote
  • 1,975
  • 19
  • 29
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
2
votes
2 answers

How to connect the WiiMote internally in a C# app?

I want to connect a single wiiMote to my app using WiiMoteLib, but I want the connection done internally ie. the user has only to run the app (and should have no need to connect the wiiMote with windows wizard or bluesoleil). The app is in C# and…