Hi!
I'm new to the real application programming as I have only done websites (php + mysql, css, html, js, as) before. I'd like to know how to get things started with the wiimote.
I somehow seem not to be able in finding a proper guide on how to get going with the wiimote.
I've figured out to set up 2 bluetooth connections for input and output to the wiimote both with l2cap with one running on psm 0x11 and one on psm 0x13.
However, that is as far as I got until now.
Does the wiimote have any handshake that you have to go through at startup? If yes, what data does it expect / send?
As far as I've understood the wiibrew wiimote site you have to send commands as the first byte containing the report id and the following bytes containing the data.
So turning on the 1st LED should be in C like ...
Goddamn no wonder it didn't work. Forgot the bluetooth header all the time. I've you have any handy tutorials / links please still post them.unsigned char buf[3];
buf[0] = 0x52; // data output
buf[1] = 0x11; // LED reportID
buf[2] = 0x10; // player 1 LED
send(out_socket, &buf, 3, 0); // out_socket = outgoing bluetooth connection socket
... correct?
Have mercy, I'm a newbie

Cheers
Snafu