We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All of the following syntax will turn off a real MuteMe device
hidapitester --vidpid 20A0/42DB --open --length 2 --send-feature 0x00 0x00 --close hidapitester --vidpid 20A0/42DB --open --length 2 --send-feature 0,0 --close hidapitester --vidpid 20A0/42DB --open --length 2 --send-feature 0,0 --close hidapitester --vidpid 20A0/42DB --open --length 2 --send-feature 0 --close
Add support for receiving multiple byte HID data streams 0x00 0x00 and translate that to led.off();
0x00 0x00
led.off();
while (bytesAvailable--) { auto hidData = RawHID.read(); #ifdef DEBUG Serial.print(hidData, HEX); //TODO: Neither HEX nor DEC print properly Serial.println(" "); #endif muteMe2Color(hidData); // TODO: Support multiple bytes 0x00 0x00 (clear) }
The text was updated successfully, but these errors were encountered:
I tried this workaround but it is too aggressive
if (sizeof(hidData) > 1) { rgbLed.off(); }
while (bytesAvailable--) { auto hidData = RawHID.read(); #ifdef DEBUG Serial.print(hidData, HEX); //TODO: Neither HEX nor DEC print properly Serial.println(" "); #endif muteMe2Color(hidData); if (sizeof(hidData) > 1) { rgbLed.off(); } } }
Sorry, something went wrong.
No branches or pull requests
All of the following syntax will turn off a real MuteMe device
Add support for receiving multiple byte HID data streams
0x00 0x00
and translate that toled.off();
The text was updated successfully, but these errors were encountered: