DarthAffe / RGB.NET

The one-stop SDK for RGB-peripherals

Home Page:http://lib.arge.be

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Corsair h100i turns of when loading it using RGB.NET

amahlaka opened this issue · comments

When i try to control the color of my h100i pump using rgb.net all that happens is that the leds on it turn off.
even when i have disabled "only show connected devices" on icue, all the demo devices obey rgb.net but the cooler pump stays off until i close my program

            RGBSurface surface = RGBSurface.Instance;
            CorsairDeviceProvider corsair = CorsairDeviceProvider.Instance;
            corsair.Initialize(exclusiveAccessIfPossible:true,throwExceptions:true);
            surface.LoadDevices(corsair);
            foreach (Led LED in surface.Leds)
            {
                LED.Color = new Color(255, 255, 0, 0);
            }
            surface.Update(true);