Created
September 17, 2015 07:38
-
-
Save mamiu/bc7e468c96acd4086a1a to your computer and use it in GitHub Desktop.
control keyboard LEDs with AutoHotkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Keyboard LED control for AutoHotkey_L | |
http://www.autohotkey.com/forum/viewtopic.php?p=468000#468000 | |
KeyboardLED(LEDvalue, "Cmd", Kbd) | |
LEDvalue - ScrollLock=1, NumLock=2, CapsLock=4 | |
Cmd - on/off/switch | |
Kbd - index of keyboard (probably 0 or 2) try 0 to 5 | |
*/ | |
KeyboardLED(LEDvalue, Cmd, Kbd=2) | |
{ | |
SetUnicodeStr(fn,"\Device\KeyBoardClass" Kbd) | |
h_device:=NtCreateFile(fn,0+0x00000100+0x00000080+0x00100000,1,1,0x00000040+0x00000020,0) | |
If Cmd= switch ;switches every LED according to LEDvalue | |
KeyLED:= LEDvalue | |
If Cmd= on ;forces all choosen LED's to ON (LEDvalue= 0 ->LED's according to keystate) | |
KeyLED:= LEDvalue | (GetKeyState("ScrollLock", "T") + 2*GetKeyState("NumLock", "T") + 4*GetKeyState("CapsLock", "T")) | |
If Cmd= off ;forces all choosen LED's to OFF (LEDvalue= 0 ->LED's according to keystate) | |
{ | |
LEDvalue:= LEDvalue ^ 7 | |
KeyLED:= LEDvalue & (GetKeyState("ScrollLock", "T") + 2*GetKeyState("NumLock", "T") + 4*GetKeyState("CapsLock", "T")) | |
} | |
success := DllCall( "DeviceIoControl" | |
, "ptr", h_device | |
, "uint", CTL_CODE( 0x0000000b ; FILE_DEVICE_KEYBOARD | |
, 2 | |
, 0 ; METHOD_BUFFERED | |
, 0 ) ; FILE_ANY_ACCESS | |
, "int*", KeyLED << 16 | |
, "uint", 4 | |
, "ptr", 0 | |
, "uint", 0 | |
, "ptr*", output_actual | |
, "ptr", 0 ) | |
NtCloseFile(h_device) | |
return success | |
} | |
CTL_CODE( p_device_type, p_function, p_method, p_access ) | |
{ | |
Return, ( p_device_type << 16 ) | ( p_access << 14 ) | ( p_function << 2 ) | p_method | |
} | |
NtCreateFile(ByRef wfilename,desiredaccess,sharemode,createdist,flags,fattribs) | |
{ | |
VarSetCapacity(objattrib,6*A_PtrSize,0) | |
VarSetCapacity(io,2*A_PtrSize,0) | |
VarSetCapacity(pus,2*A_PtrSize) | |
DllCall("ntdll\RtlInitUnicodeString","ptr",&pus,"ptr",&wfilename) | |
NumPut(6*A_PtrSize,objattrib,0) | |
NumPut(&pus,objattrib,2*A_PtrSize) | |
status:=DllCall("ntdll\ZwCreateFile","ptr*",fh,"UInt",desiredaccess,"ptr",&objattrib | |
,"ptr",&io,"ptr",0,"UInt",fattribs,"UInt",sharemode,"UInt",createdist | |
,"UInt",flags,"ptr",0,"UInt",0, "UInt") | |
return % fh | |
} | |
NtCloseFile(handle) | |
{ | |
return DllCall("ntdll\ZwClose","ptr",handle) | |
} | |
SetUnicodeStr(ByRef out, str_) | |
{ | |
VarSetCapacity(out,2*StrPut(str_,"utf-16")) | |
StrPut(str_,&out,"utf-16") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment