PS3 TE as Classic Controller on PC?

Hey guys, I’m trying to play some KoF 2002 on GGPO, but I’ve just found out that my PS3 TE Round 2 won’t work on my PC unless I buy a new PCI USB card.

Luckily, I actually modded my TE a couple of weeks ago with one of Toodles’ PiiWee boards, making it emulate a Wii Classic Controller when plugged into a WiiMote. Now, I know it’s possible to connect a Wiimote to a computer via Bluetooth - I’ve done it - but can you use a classic controller on a PC in that way? Can someone link me to a page that lines it all out? I have Win7 Pro 64 bit. If I can use my TE on my PC with the method used to use Wii controllers, I’ll be all set.

  1. Plug Classic Controller to Wiimote
  2. Plug in Bluetooth Adapter (A step not needed if your computer has bluetooth built in)
  3. Sync Wiimote to PC
  4. Run PPJoy
  5. Run GlovePIE
  6. Run this script in GlovePIE -> http://whatistheexcel.com/upload/Classic.Generic.PIE

I havent tested this personally, cut ‘n’ paste from:
Let me google that for you
Fourth hit.

PPJoy is not really needed if you’re only running GGPO. Also, PPJoy doesn’t work on Windows 7 Pro x64 without enabling test signing for drivers and running through a few manual driver installation steps, which ends up being a pain. For GGPO you can just run GlovePIE by itself and bind the inputs to keyboard keys.

For example, I’ll just post a copy of the script I use:


//Left analog stick
Key.W = (-1.2 < Wiimote1.Classic.Joy1Y < -0.5)
Key.S = (0.5 < Wiimote1.Classic.Joy1Y < 1.2)
Key.A = (-1.2 < Wiimote1.Classic.Joy1X < -0.5)
Key.D = (0.5 < Wiimote1.Classic.Joy1X < 1.2)

//Right analog stick
Key.I = (-1.2 < Wiimote1.Classic.Joy2Y < -0.5)
Key.K = (0.5 < Wiimote1.Classic.Joy2Y < 1.2)
Key.J = (-1.2 < Wiimote1.Classic.Joy2X < -0.5)
Key.L = (0.5 < Wiimote1.Classic.Joy2X < 1.2)

//'Other' controls
Key.E = Classic.RFull
Key.X = Classic.ZR
Key.Up = Classic.Up
Key.Down = Classic.Down
Key.Left = Classic.Left
Key.Right = Classic.Right
Key.Z = Classic.ZL
Key.G = Classic.A
Key.V = Classic.B
Key.T = Classic.X
Key.F = Classic.Y
Key.Escape = Classic.Home
Key.U = Classic.Plus
Key.Y = Classic.Minus
Key.Q = Classic.LFull

Save it as a .PIE file with whatever name you want, and feel free to modify as needed.