wiimote

How to reset the Nintendo Wii remote LEDs from code when using the WiiMote with a PC?

I'm using Delphi Pro 6 to control the Nintendo Wii remote via the HID interface from my PC. I can change the LED blinking pattern. However, I don't know how to reset the WiiMote so that the LEDs return to their default blink pattern. Because of this, when my program is exited, the LEDs are stuck in the OFF state leading the user to th...

C# wiimote library - computing distance from sensor bar to wiimote

I'm working with the C# managed wiimote library for a little fun project I'm working on, But I'm having trouble finding a good tutorial on how to calculate how far the wiimote is from the monitor (i.e sensor bar). I want to create a zoom effect where an object will grow or shrink based on how far back you move the wiimote from the screen...

Wiimote and Computer Mouse

Hi, I am Umair and I am here to ask a very basic question related to Wiimote (Wii Remote). I am in charge to turn Wiimote into computer mouse and I know this is possible. I am told to use this library http://wiimotelib.codeplex.com/. But I need to know whether this is just a Wiimote I need to buy or some other bluetooth/infrared device/...

Simulate Mouse Clicks on Python

I'm currently in the process of making my Nintendo Wiimote (Kinda sad actually) to work with my computer as a mouse. I've managed to make the nunchuk's stick control actually move the mouse up and down, left and right on the screen! This was so exciting. Now I'm stuck. I want to left/right click on things via python when i click A, When...

Xorg, Python, and Current Window Title

After stackoverflow answered my previous question on here about my Wiimote left/right click issue, Not only can I move the mouse cursor, I can now left/right click on things. I now have one more question. What do I use in python to get the title of the current active window? After googling 'X11 Python Window Title', 'Linux Python Window...

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 greatly appreciated. Thanks. ...

Way to Map Small Values to Large and Vice Versa

I am currently working on a tool that will allow Wiimote to be used as computer mouse and am stuck in a problem. The wiimote returns x and y co-ordinates which are very small as compared to screen resolution of my pc and I am looking for a way to map these small values to my large resolution values. For example, pc least x value is 0 an...

32Feet API with C# .NET - Stuck

I am trying to pair my Wiimotes using 32Feet API and I am successfully in doing so by following code. var client = new InTheHand.Net.Sockets.BluetoothClient(); var devices = client.DiscoverDevices(); var count = (from d in devices where d.DeviceName.Contains("Nintendo") select d).Count(); foreach (var device...