Skip to content

Clear 0x00 doesn't work #1

@spuder

Description

@spuder

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions