1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00

Fixed typo

This commit is contained in:
Darth Affe 2021-04-27 18:06:21 +02:00
parent a2a7758978
commit 363fc4c066

View File

@ -33,7 +33,7 @@ namespace RGB.NET.Devices.PicoPi
public static HIDLoader<int, int> DeviceDefinitions { get; } = new(PicoPiSDK.VENDOR_ID)
{
{ PicoPiSDK.HID_BULK_CONTROLLER_PID, RGBDeviceType.LedStripe, "WS1812B-Controller", LedMappings.StripeMapping, 0 },
{ PicoPiSDK.HID_BULK_CONTROLLER_PID, RGBDeviceType.LedStripe, "WS2812B-Controller", LedMappings.StripeMapping, 0 },
};
private readonly List<PicoPiSDK> _sdks = new();