dieseltown
Member
- Jan 28, 2013
- 56
- 11
Hey all Got a tough one for you. I purchased a non OEM wiimote on amazon for $10.00 just to play NES roms on the tablet. Unfortunately it asking for a PIN to pair. 1234 and 0000 doesn't work. I've also tried the wiimote from the app store, but it still requires a pin. I was able to locate this, but have no idea what it means:
Lets assume the Wiimote has the bluetooth address "00:1E:35:3B:7E:6D". If you want the PIN for bluetooth pairing in a simple string, do the following:
char pin[6];
pin[0] = 0x6D;
pin[1] = 0x7E;
pin[2] = 0x3B;
pin[3] = 0x35;
pin[4] = 0x1E;
pin[5] = 0x00;
Now "pin" contains your bluetooth pin that should be used for pairing your devices.
Can someone translate that to terms that I can understand? Or did I just waste $10.00 by not buying an OEM mote?
Thanks for any replies.
Lets assume the Wiimote has the bluetooth address "00:1E:35:3B:7E:6D". If you want the PIN for bluetooth pairing in a simple string, do the following:
char pin[6];
pin[0] = 0x6D;
pin[1] = 0x7E;
pin[2] = 0x3B;
pin[3] = 0x35;
pin[4] = 0x1E;
pin[5] = 0x00;
Now "pin" contains your bluetooth pin that should be used for pairing your devices.
Can someone translate that to terms that I can understand? Or did I just waste $10.00 by not buying an OEM mote?
Thanks for any replies.