Adding Razer DeathAdder V2 to OpenRazerDevices.h to fix #604

This commit is contained in:
Chris 2020-11-10 23:23:47 +11:00
parent 495c3cfe68
commit 5b15251d46

View file

@ -2297,6 +2297,52 @@ static const razer_device deathadder_elite_device =
0
};
/*-------------------------------------------------------------*\
| Razer DeathAdder V2 1532:0084 |
| |
| Zone "Logo" |
| Single |
| 1 LED |
| |
| Zone "Scroll Wheel" |
| Single |
| 1 LED |
\*-------------------------------------------------------------*/
static const razer_zone deathadder_v2_logo_zone =
{
"Logo",
ZONE_TYPE_SINGLE,
1,
1
};
static const razer_zone deathadder_v2_scroll_wheel_zone =
{
"Scroll Wheel",
ZONE_TYPE_SINGLE,
1,
1
};
static const razer_device deathadder_v2_device =
{
"Razer DeathAdder V2",
DEVICE_TYPE_MOUSE,
false,
1,
2,
{
&deathadder_v2_logo_zone,
&deathadder_v2_scroll_wheel_zone,
NULL,
NULL,
NULL,
NULL
},
NULL,
0
};
/*-------------------------------------------------------------*\
| Razer Diamondback Chroma |
| |
@ -3728,6 +3774,7 @@ static const razer_device* device_list[] =
&basilisk_device,
&deathadder_chroma_device,
&deathadder_elite_device,
&deathadder_v2_device,
&diamondback_chroma_device,
&lancehead_te_device,
&mamba_2012_wired_device,