Add underglow zone for Razer Huntsman Elite

This commit is contained in:
Adam Honse 2020-06-14 15:57:50 -05:00
parent 305f66ad3d
commit 3eba2c3dd3

View file

@ -412,8 +412,12 @@ static const razer_device huntsman_device =
| Zone "Keyboard" |
| Matrix |
| 6 Rows, 22 Columns |
| |
| Zone "Underglow" |
| Matrix |
| 3 Rows, 22 Columns |
\*-------------------------------------------------------------*/
static const razer_zone huntsman_elite_zone =
static const razer_zone huntsman_elite_keyboard_zone =
{
"Keyboard",
ZONE_TYPE_MATRIX,
@ -421,16 +425,24 @@ static const razer_zone huntsman_elite_zone =
22
};
static const razer_zone huntsman_elite_underglow_zone =
{
"Underglow",
ZONE_TYPE_MATRIX,
3,
22
};
static const razer_device huntsman_elite_device =
{
"Razer Huntsman Elite",
DEVICE_TYPE_KEYBOARD,
true,
6,
9,
22,
{
&huntsman_elite_zone,
NULL,
&huntsman_elite_keyboard_zone,
&huntsman_elite_underglow_zone,
NULL,
NULL,
NULL,