diff --git a/RGBController/OpenRazerDevices.h b/RGBController/OpenRazerDevices.h index 1c7199696..b855d8cf0 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,