Skip to content

zzattack/Logitech-LCD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lglcd

This project transforms the entire Logitech LCD SDK (lglcd.lib), which is only provided as a static C library, into a dynamic link library, by exporting all functions in the outputted native lglcd.dll.

LgLcd.NET

This C# project makes use of the lglcd.dll, importing all of its functionality (whilst ignoring deprecated functionality) and exposes it in an abstract manner to faciliate development of Logitech LCD applets from within .NET languages.

LgBackLight.NET

This standalone C# project provides a static class called BackLight, that enables one to set the keyboards RGB backlight, which before was not possible without using either Lua scripts or Logitechs own closed source manual configuration software. Details on how this was done can be found on Franks blog at http://zzattack.wordpress.com/2011/12/10/reverse-engineering-the-rgb-led-in-high-end-logitech-keyboards/.

Example LgBackLight.NET Usage

LogitechKeyboardTypes myCustomKeyboard = new LogitechKeyboardTypes(0xC22E, 0x7); // (ProductID, payloadID) //
LogitechKeyboardManager.Init(myWinForm.Handle, LogitechKeyboardTypes.G19, LogitechKeyboardTypes.G510, myCustomKeyboard);

LogitechKeyboard allG19Keyboards = LogitechManager.GetKeyboards(LogitechKeyboardTypes.G19);
LogitechKeyboard allG510Keyboards = LogitechManager.GetKeyboards(LogitechKeyboardTypes.G510);
LogitechKeyboard allCustomKeyboards = LogitechManager.GetKeyboards(myCustomKeyboard);

foreach(var keyboard in allG510Keyboards) 
{
   Color currentColor = keyboard.BackLightColor;
   keyboard.BackLightColor = Color.Red;
}

About

C# wrapper for the Logitech LCD API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published