From 3eba2c3dd3db6b237da71cb842e0abd0df0a3114 Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Sun, 14 Jun 2020 15:57:50 -0500 Subject: [PATCH] Add underglow zone for Razer Huntsman Elite --- RGBController/OpenRazerDevices.h | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/RGBController/OpenRazerDevices.h b/RGBController/OpenRazerDevices.h index 1c719969..b855d8cf 100644 --- a/RGBController/OpenRazerDevices.h +++ b/RGBController/OpenRazerDevices.h @@ -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,