Skip to content

Commit

Permalink
feat: Add HuddlyHex enumeration
Browse files Browse the repository at this point in the history
This enumeration includes hexadecimal values for vendor ids, product ids and so on.
  • Loading branch information
brikendr committed Dec 22, 2021
1 parent 9c51184 commit 69f311f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/enums/HuddlyHex.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/**
*
* Enum defining all the Huddly HEX values related to device product IDs, vendor ID etc
*/
enum HuddlyHex {
VID = 0x2bd9, // Huddly Vendor ID
GO_PID = 0x11, // Huddly GO
BOXFISH_PID = 0x21, // Huddly IQ (with mic) / IQ Jamboard
CLOWNFISH_PID = 0x31, // Huddly IQ (without mic and cnn feature)
DWARFFISH_PID = 0x51, // Huddly ONE
DARTFISH_PID = 0x41, // Huddly Canvas
L1_PID = 0x3e9, // Huddly L1/ACE
BASE_PID = 0xba5e, // Huddly BASE
}

export default HuddlyHex;

0 comments on commit 69f311f

Please sign in to comment.