Wii Controller Project page update

I just got my NumChuck and WiiChuck Adapter today.
I hooked it up with my Panda. Then download the driver from the Wii Controller Interface hardware.
(link removed)

There was the error happened. The same error (I2C) that people have posted a couple of time.

               
                // Send 0x00 indicating we want data!
                I2CDevice.I2CTransaction[] NumChuckSaySendMeData = 
                             new I2CDevice.I2CTransaction[1];
                NumChuckSaySendMeData[0] = 
                       [b]NumChuckDevice[/b].CreateWriteTransaction(new byte[] { 0x00 });

the correct one.

                
               // Send 0x00 indicating we want data!
                I2CDevice.I2CTransaction[] NumChuckSaySendMeData = 
                             new I2CDevice.I2CTransaction[1];
                NumChuckSaySendMeData[0] = 
                             [b]I2CDevice[/b].CreateWriteTransaction(new byte[] { 0x00 });

(link removed)

I noticed that the Wii Controller Driver and the code on the Wii Controller Project page is already outdated.

So I went in and updated it all.
I also added the Schematics and VS2010 + NETMF 4.1 code that I built for Panda into the download section.

So, now no more frustration!

Enjoys :smiley:

Nice Sam ;D Yes that i2c device error has come along a LOT of times
(even by me, when I did not have my second cup of coffee and started programming, lol)