![]() |
#1
|
||||
|
||||
![]()
Current version: 1.2.0
You'll always find the latest release on nuget https://www.nuget.org/packages/CUE.NET/ or (sometimes older) releases at https://github.com/DarthAffe/CUE.NET/releases/latest and the source at https://github.com/DarthAffe/CUE.NET This is considered done now and will be no longer actively developed (only bugfixes if needed). CUE.NET will be superseded by RGB.NET. Feel free to join the discord-channel if you're interested what's happening there :) Features:
Last edited by Darth Affe; 11-18-2017 at 03:08 PM. Reason: Updated version |
#2
|
|||
|
|||
![]()
Hey man, good work! I too much prefer c# over c++, could you give us some example code that we could test and work with :)? Thanks
|
#3
|
||||
|
||||
![]()
Hey goomonster3,
I just committed a small example of what's possible for now. This is rudimentary, but I'm going to bring it into some structure now. |
#4
|
|||
|
|||
![]()
Sweet! Thank you a lot - I am gonna try and do some stuff with your "ported" c# sdk now :D. Keep up the good work - loads of developers will appreciate it later when this gets noticed!
|
#5
|
|||
|
|||
![]()
Update: Can't get your example to start - 14 errors
Here they are: https://gyazo.com/53efc7509528454c2aa9c33f8fe84037 |
#6
|
||||
|
||||
![]()
Are you using Visual Studio 2015? I've used C# 6 language features which (as far as I know) can't be built with older versions.
|
#7
|
|||
|
|||
![]()
Ahh I am using 2013 i believe, ill try 2015.
|
#8
|
|||
|
|||
![]()
Working! :) Thanks!
|
#9
|
||||
|
||||
![]()
I've just created an release tag for a version which seems to work quite well.
As said until now it's nothing too fancy but for anyone who wants to utilize the api it should be a good place to start. Link: https://github.com/DarthAffe/CUE.NET...ses/tag/v0.1.0 Like before I appreciate ideas of what to add, help with other devices than my K95 (the only device it's tested until now) or someone who checks my spelling and grammar to let the documentation (well, or code-comments) be understandable :p |
#10
|
|||
|
|||
![]()
What would be great if you could light up the keyboard if you click a mouse button :-) But I am still waiting for my M65 RGB as it was hard to find one with the sails logo. The gaming logo looks %*@# ;-)
|
#11
|
|||
|
|||
![]()
Hey Darth, I was fooling around with you're wrapper and got this cool lighting effect by modifying your sample program.
|
#12
|
||||
|
||||
![]() Quote:
I'm about to finish all the stuff to release a stable version 1.0 - I hope you'll use it to do more cool things :) |
#13
|
||||
|
||||
![]()
Hey! I'd like to know how far along you might be on the development of support for mice and headsets! If you're still working on it, I could pitch in. I'm using your wrapper in my program, now, and I'd love to extend my effects to all the devices through SDK.
Let me know here or in a PM if you'd like to work together on what's left, please! :) |
#14
|
|||
|
|||
![]()
I'm noticing that the SDK detects my keyboard but the keys collection contains zero elements. I have a Corsair K95 under Windows 10 with latest CUE Engine, driver and firmware.
using Version 0.2.0.0 of CUE.NET and tries .NET 4.5 and 4.6. -- CODE -- CueSDK.Initialize(); Console.WriteLine("Initialized with " + CueSDK.LoadedArchitecture + "-SDK"); CorsairKeyboard keyboard = CueSDK.KeyboardSDK; Console.WriteLine(keyboard.DeviceInfo.Model); Console.WriteLine(keyboard.DeviceInfo.Type.ToString()); Console.WriteLine(keyboard.DeviceInfo.CapsMask.ToString()); if (keyboard == null) throw new Exception("Keyboard not found"); keyboard['A'].Led.Color = Color.Red; keyboard[CorsairKeyboardKeyId.B].Led.Color = Color.Green; keyboard.Update(); End's with an uninitialized object exception when I try to touch keyboard['A'] and if I output the contents of the keys collection I have a count of zero. It does however report the K95 keyboard properly after I initialize. Help? I'm trying to write a program to do something really cool with the LED's and serve it as a #Codegasm episode on http://barnnerd.com |
#15
|
||||
|
||||
![]()
Hmm, sounds a bit weird - I'll investigate this.
Could you try to run the color_pulse-example provided by corsair with the sdk? This would help to make sure that there is no general problem with your CUE-, OS-, firmware-, device-combination. |
Thread Tools | Search this Thread |
Display Modes | Rate This Thread |
|
|