Skip to content

Commit 99a6604

Browse files
Chr1sNoCalcProgrammer1
authored andcommitted
Razer-Mouse-Bungee-V3-Fix
1 parent fb6bf0f commit 99a6604

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

Controllers/RazerController/RazerController.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ RazerController::RazerController(hid_device* dev_handle, hid_device* dev_argb_ha
103103
case RAZER_TARTARUS_V2_PID:
104104
case RAZER_BASE_STATION_CHROMA_PID:
105105
case RAZER_BASE_STATION_V2_CHROMA_PID:
106+
case RAZER_MOUSE_BUNGEE_V3_CHROMA_PID:
106107
case RAZER_CHARGING_PAD_CHROMA_PID:
107108
case RAZER_CHROMA_HDK_PID:
108109
case RAZER_CORE_X_PID:

Controllers/RazerController/RazerDevices.h

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6079,6 +6079,42 @@ static const razer_device base_station_device =
60796079
0
60806080
};
60816081

6082+
6083+
/*-------------------------------------------------------------*\
6084+
| Razer Mouse Bungee V3 Chroma |
6085+
| |
6086+
| Zone "LED Strip" |
6087+
| Linear |
6088+
| 8 LEDs |
6089+
\*-------------------------------------------------------------*/
6090+
static const razer_zone mouse_bungee_zone =
6091+
{
6092+
"LED Strip",
6093+
ZONE_TYPE_LINEAR,
6094+
1,
6095+
8
6096+
};
6097+
6098+
static const razer_device mouse_bungee_device =
6099+
{
6100+
"Razer Mouse Bungee V3 Chroma",
6101+
RAZER_MOUSE_BUNGEE_V3_CHROMA_PID,
6102+
DEVICE_TYPE_MOUSE,
6103+
true,
6104+
1,
6105+
8,
6106+
{
6107+
&mouse_bungee_zone,
6108+
NULL,
6109+
NULL,
6110+
NULL,
6111+
NULL,
6112+
NULL
6113+
},
6114+
NULL,
6115+
0
6116+
};
6117+
60826118
/*-------------------------------------------------------------*\
60836119
| Razer Base Station V2 Chroma |
60846120
| |
@@ -6407,6 +6443,7 @@ static const razer_device* device_list[] =
64076443
\*-----------------------------------------------------------------*/
64086444
&base_station_device,
64096445
&base_station_v2_device,
6446+
&mouse_bungee_device,
64106447
&charging_pad_chroma_device,
64116448
&chromaargb_device,
64126449
&chromahdk_device,

0 commit comments

Comments
 (0)