mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
Add missing Speaker device type mapping
This commit is contained in:
parent
5ba98d3dcd
commit
e6b5e5a77c
@ -38,6 +38,7 @@ internal static class Helper
|
||||
DeviceType.Mouse => RGBDeviceType.Mouse,
|
||||
DeviceType.Mousemat => RGBDeviceType.Mousepad,
|
||||
DeviceType.Headset => RGBDeviceType.Headset,
|
||||
DeviceType.Speaker => RGBDeviceType.Speaker,
|
||||
DeviceType.HeadsetStand => RGBDeviceType.HeadsetStand,
|
||||
_ => RGBDeviceType.Unknown
|
||||
};
|
||||
|
||||
@ -35,9 +35,9 @@ public class OpenRGBDeviceProvider : AbstractRGBDeviceProvider
|
||||
public bool ForceAddAllDevices { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// Defines which device types will be separated by zones. Defaults to <see cref="RGBDeviceType.LedStripe" /> | <see cref="RGBDeviceType.Mainboard" />.
|
||||
/// Defines which device types will be separated by zones. Defaults to <see cref="RGBDeviceType.LedStripe" /> | <see cref="RGBDeviceType.Mainboard" | <see cref="RGBDeviceType.Speaker" />.
|
||||
/// </summary>
|
||||
public RGBDeviceType PerZoneDeviceFlag { get; } = RGBDeviceType.LedStripe | RGBDeviceType.Mainboard;
|
||||
public RGBDeviceType PerZoneDeviceFlag { get; } = RGBDeviceType.LedStripe | RGBDeviceType.Mainboard | RGBDeviceType.Speaker;
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user