Skip to content

Commit 12a3535

Browse files
committed
Added SteelSeries Arena 9
1 parent 197be1f commit 12a3535

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

RGB.NET.Devices.SteelSeries/Generic/LedMappings.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -644,4 +644,15 @@ public static class LedMappings
644644
{ LedId.Keyboard_Custom9, SteelSeriesLedId.ZoneNine },
645645
{ LedId.Keyboard_Custom10, SteelSeriesLedId.ZoneTen }
646646
};
647+
648+
/// <summary>
649+
/// Gets the mapping for 4-zone speakers.
650+
/// </summary>
651+
public static LedMapping<SteelSeriesLedId> SpeakerFourZone { get; } = new()
652+
{
653+
{ LedId.Speaker1, SteelSeriesLedId.ZoneOne },
654+
{ LedId.Speaker2, SteelSeriesLedId.ZoneTwo },
655+
{ LedId.Speaker3, SteelSeriesLedId.ZoneThree },
656+
{ LedId.Speaker4, SteelSeriesLedId.ZoneFour },
657+
};
647658
}

RGB.NET.Devices.SteelSeries/SteelSeriesDeviceProvider.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ public static SteelSeriesDeviceProvider Instance
9595

9696
//Monitors
9797
{ 0x1126, RGBDeviceType.Monitor, "MGP27C", LedMappings.MonitorOnehundredandthreeZone, SteelSeriesDeviceType.OneHundredAndThreeZone },
98+
99+
//Speaker
100+
{ 0x1A05, RGBDeviceType.Speaker, "Arena 9", LedMappings.SpeakerFourZone, SteelSeriesDeviceType.FourZone },
98101
};
99102

100103
#endregion

0 commit comments

Comments
 (0)