Closed LordJZ closed 7 years ago
I'm 100% sure, that this problem is CUE-related. I could reproduce the behavior you described with CUE but not with the CUE 2 Beta I'm using right now. So this problem seems to be already fixed but will take some time until it's available.
I did the following:
CueSDK.Initialize();
CorsairKeyboard keyboard = CueSDK.KeyboardSDK;
if (keyboard == null)
throw new WrapperException("No keyboard found");
keyboard.Brush = new SolidColorBrush(Color.Black);
keyboard.Update();
Wait(3);
keyboard.Brush = new SolidColorBrush(Color.Yellow);
keyboard.Update();
Wait(3);
CueSDK.Reinitialize();
Wait(3);
keyboard.Brush = new SolidColorBrush(Color.Green);
keyboard.Update();
Wait(3);
return;
@DarthAffe could you please point me out how can I get CUE 2? Thanks.
As you can read here the beta entry is currently closed. I'm afraid that you'd have to wait until it's officially released.
OK, thanks for looking into this!
If there's a macro running while Initialize/Reinitialize is called, then the macro will be interrupted. Ran into this issue when trying to workaround losing CUE connection on wake up.
Corsair ticket 6778416, it might be their issue.