wooting-rgb-sdk icon indicating copy to clipboard operation
wooting-rgb-sdk copied to clipboard

Wootility inaccessible after running something using the SDK

Open N00byKing opened this issue 4 years ago • 6 comments

This is a bit weird. If I run anything using the SDK (No matter if develop or master Branch), the Wootility will stop recognizing the Keyboard, even if the SDK Program exited cleanly, with the Wootility having been closed before running the Program.

So, it goes like this: Wootility recognizes Keyboard -> Close Wootility -> Run SDK Program until finished -> Wootility does not Recognize Keyboard upon reopening

Sample C++ Code:

#include <iostream>

#include "wooting-rgb-sdk.h"

int main() {
    std::cout << wooting_rgb_kbd_connected() << std::endl;
    std::cout << "G'day" << std::endl;
    wooting_rgb_close();
    return 0;
}

However, the SDK will continue to recognize the Keyboard. It's only the Wootility that doesn't.

N00byKing avatar Jun 03 '20 15:06 N00byKing