-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
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();
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)
}
Metadata
Metadata
Assignees
Labels
No labels