mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
27 lines
1.2 KiB
Markdown
27 lines
1.2 KiB
Markdown
[RGB.NET](https://github.com/DarthAffe/RGB.NET) Device-Provider-Package for Corsair-Devices.
|
|
|
|
## Usage
|
|
This provider follows the default pattern and does not require additional setup.
|
|
|
|
```csharp
|
|
surface.Load(CorsairDeviceProvider.Instance);
|
|
```
|
|
|
|
# Required SDK
|
|
This providers requires native SDK-dlls.
|
|
You can get them directly from Corsair at [https://github.com/CorsairOfficial/cue-sdk/releases](https://github.com/CorsairOfficial/cue-sdk/releases)
|
|
|
|
(Developed and tested with iCUE SDK v4.0.84)
|
|
|
|
Since the SDK-dlls are native it's important to use the correct architecture you're building your application for. (If in doubt you can always include both.)
|
|
|
|
### x64
|
|
`redist\x64\iCUESDK.x64_2019.dll` from the SDK-zip needs to be distributed as `<application-directory>\x64\iCUESDK.x64_2019.dll` (or simply named `iCUESDK.dll`)
|
|
|
|
You can use other, custom paths by adding them to `CorsairDeviceProvider.PossibleX64NativePaths`.
|
|
|
|
### x86 (only SDKs before v4.0.84)
|
|
`redist\i386\iCUESDK_2019.dll` from the SDK-zip needs to be distributed as `<application-directory>\x86\iCUESDK_2019.dll` (or simply named `iCUESDK.dll`)
|
|
|
|
You can use other, custom paths by adding them to `CorsairDeviceProvider.PossibleX86NativePaths`.
|