Wii Classic Controller + Arduino Pro Micro = WiiClassicControl.h Error?

HazardsMind:
Its been a long time since I did anything with that library, what IDE version are you using? I don't currently own a Pro Micro, but I will try to get one in and see if I can recreate this bug.

Hi

yeah i got your file, very thank you for share!
I'm using IDE 1.6.11.

And after download your file i search more and found a fix for your file, because only stickers work.
I change this:


private:

boolean GetButton(byte col, byte D)
{
return ((data[col] & D) == 0); <-- Here, this line.
}

int GetStick(byte col, byte mask)
{
return (data[col] & mask);
}


After this little change all works, but with this bug if i press some buttons, its shows duplicates, like the picture.