Dolphin, the GameCube and Wii emulator - Forums
Can't see the wii pointer - Printable Version

+- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org)
+-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support)
+--- Forum: Controllers (https://forums.dolphin-emu.org/Forum-controllers)
+--- Thread: Can't see the wii pointer (/Thread-can-t-see-the-wii-pointer)



Can't see the wii pointer - talless - 04-20-2012

I have just connected a new wiimote to dolphin, the wiimote works but I can't see the pointer.
Any Ideas how to fix that?

Edit:
However I can see it when emulated wiimore and I am using
3.0 version.


RE: Can't see the wii pointer - admin89 - 04-20-2012

Buy a wireless sensor bar ...


RE: Can't see the wii pointer - talless - 04-20-2012

(04-20-2012, 02:57 AM)admin89 Wrote: Buy a wireless sensor bar ...

I got one


RE: Can't see the wii pointer - admin89 - 04-20-2012

Emulated wiimote has nothing to do with Real wiimote .
Make sure you stand 3 feet (1m) away from the sensor bar
Use camera to check the sensor bar is still working or not
Which game ?




RE: Can't see the wii pointer - talless - 04-20-2012

(04-20-2012, 03:05 AM)admin89 Wrote: Emulated wiimote has nothing to do with Real wiimote .
Make sure you stand 3 feet (1m) away from the sensor bar
Use camera to check the sensor bar is still working or not
Which game ?

There is a light coming from the sensor bar and the distanace didn't matter. I am trying to play warioware smooth moves..
Edit:
You were right it was a problem with the distance and have to put the sensor bar in a specific angle for a stronger light, thx Smile


RE: Can't see the wii pointer - admin89 - 04-20-2012

Try rev 3.0-591
If it didn't work , try different game or try Toshiba Bluetooth Stack
Or test your sensor bar again :
_Download Glovepie
_Put this script to Glovepie and hit run
Code:
// Wiimote mouse script for Windows desktop
// Requires a sensor bar

var.ButtonFreezeTime = 250ms
var.PointerBump = KeepDown(Pressed(wiimote.A),var.ButtonFreezeTime) or KeepDown(Pressed(wiimote.B),var.ButtonFreezeTime)
wiimote.Leds = false

// Mouse movement
if wiimote.PointerVisible but not var.PointerBump then
   mouse.x = wiimote.PointerX
   mouse.y = wiimote.PointerY
end if

// Mouse and Keyboard Buttons
mouse.LeftButton = Wiimote.A and KeepDown(Wiimote.PointerVisible,0.5s)
mouse.RightButton = Wiimote.B and KeepDown(Wiimote.PointerVisible,0.5s)
mouse.MiddleButton = Wiimote.Home and KeepDown(Wiimote.PointerVisible,0.5s)
mouse.XButton1 = Wiimote.Minus
mouse.XButton2 = Wiimote.Plus
Keyboard.Left = Wiimote.Left
Keyboard.Right = Wiimote.Right
Keyboard.Escape = Wiimote.Two
Keyboard.Windows = Wiimote.One
// Mouse Wheel
if wiimote.Up then
   mouse.WheelUp = true
   wait 30ms
   mouse.WheelUp = false
   wait 30ms
end if
if wiimote.Down then
   mouse.WheelDown = true
   wait 30ms
   mouse.WheelDown = false
   wait 30ms
end if