mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
36 lines
1.3 KiB
C#
36 lines
1.3 KiB
C#
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.Novation
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Represents a generic information for a <see cref="T:RGB.NET.Devices.Novation.NovationLaunchpadRGBDevice" />.
|
|
/// </summary>
|
|
public class NovationLaunchpadRGBDeviceInfo : NovationRGBDeviceInfo
|
|
{
|
|
#region Properties & Fields
|
|
|
|
internal LedIdMappings LedMapping { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Internal constructor of managed <see cref="T:RGB.NET.Devices.Novation.NovationLaunchpadRGBDeviceInfo" />.
|
|
/// </summary>
|
|
/// <param name="model">The represented device model.</param>
|
|
/// <param name="deviceId">The id of the device.</param>
|
|
/// <param name="colorCapabilities">The <see cref="T:RGB.NET.Devices.Novation.NovationColorCapabilities" /> of the <see cref="T:RGB.NET.Core.IRGBDevice" />.</param>
|
|
/// <param name="ledMapping">A mapping of leds this device is initialized with.</param>
|
|
internal NovationLaunchpadRGBDeviceInfo(string model, int deviceId, NovationColorCapabilities colorCapabilities, LedIdMappings ledMapping)
|
|
: base(RGBDeviceType.LedMatrix, model, deviceId, colorCapabilities)
|
|
{
|
|
this.LedMapping = ledMapping;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|