1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

24 lines
429 B
C#

using RGB.NET.Core;
namespace RGB.NET.Devices.PicoPi
{
public static class LedMappings
{
#region Properties & Fields
public static LedMapping<int> StripeMapping = new();
#endregion
#region Constructors
static LedMappings()
{
for (int i = 0; i < 255; i++)
StripeMapping.Add(LedId.LedStripe1 + i, i);
}
#endregion
}
}