File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,8 @@ - (id)init {
156
156
productIDKey: @USB_PID_STREAMDECK_MINI_V2};
157
157
NSDictionary *matchXL = @{vendorIDKey: @USB_VID_ELGATO,
158
158
productIDKey: @USB_PID_STREAMDECK_XL};
159
+ NSDictionary *matchXLV2 = @{vendorIDKey: @USB_VID_ELGATO,
160
+ productIDKey: @USB_PID_STREAMDECK_XL_V2};
159
161
NSDictionary *matchMk2 = @{vendorIDKey: @USB_VID_ELGATO,
160
162
productIDKey: @USB_PID_STREAMDECK_MK2};
161
163
NSDictionary *matchPlus = @{vendorIDKey: @USB_VID_ELGATO,
@@ -169,6 +171,7 @@ - (id)init {
169
171
matchMini,
170
172
matchMiniV2,
171
173
matchXL,
174
+ matchXLV2,
172
175
matchMk2,
173
176
matchPlus,
174
177
matchPedal ]);
@@ -265,7 +268,11 @@ - (HSStreamDeckDevice*)deviceDidConnect:(IOHIDDeviceRef)device {
265
268
case USB_PID_STREAMDECK_XL:
266
269
deck = [[HSStreamDeckDeviceXL alloc ] initWithDevice: device manager: self ];
267
270
break ;
268
-
271
+
272
+ case USB_PID_STREAMDECK_XL_V2:
273
+ deck = [[HSStreamDeckDeviceXL alloc ] initWithDevice: device manager: self ];
274
+ break ;
275
+
269
276
case USB_PID_STREAMDECK_ORIGINAL_V2:
270
277
deck = [[HSStreamDeckDeviceOriginalV2 alloc ] initWithDevice: device manager: self ];
271
278
break ;
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ static const char *USERDATA_TAG = "hs.streamdeck";
20
20
#define USB_PID_STREAMDECK_MINI 0x0063
21
21
#define USB_PID_STREAMDECK_MINI_V2 0x0090
22
22
#define USB_PID_STREAMDECK_XL 0x006c
23
+ #define USB_PID_STREAMDECK_XL_V2 0x008F
23
24
#define USB_PID_STREAMDECK_MK2 0x0080
24
25
#define USB_PID_STREAMDECK_PLUS 0x0084
25
26
#define USB_PID_STREAMDECK_PEDAL 0x0086
You can’t perform that action at this time.
0 commit comments