Contribute
Register

[solved] ASUS UX430UA keyboard backlighting

Status
Not open for further replies.
ok, we can mark it as [SOLVED]
I've been working with EMlyDinEsh AsusNBFnKeys.kext to prepare kext for keyboard backlights and now it's working 100% with 3 levels.

Thx

Marked solved.
 
ok, we can mark it as [SOLVED]
I've been working with EMlyDinEsh AsusNBFnKeys.kext to prepare kext for keyboard backlights and now it's working 100% with 3 levels.

Thx
Been following your post regarding your asus ux430ua. I suspect my laptop is similar. Was wondering if you could help me with figuring out my keyboard backlight as mine is not working at all. I got backlight working with ambient light sensor and brightness control but no keyboard back light. or maybe you can send me the AsusNBFnKeys.kext that EMlyDinEsh prepared for you so I can test. Also providing problem reporting files. THanks!!
 

Attachments

  • jacknick_report_keyboard backlight.zip
    3.1 MB · Views: 133
Been following your post regarding your asus ux430ua. I suspect my laptop is similar. Was wondering if you could help me with figuring out my keyboard backlight as mine is not working at all. I got backlight working with ambient light sensor and brightness control but no keyboard back light. or maybe you can send me the AsusNBFnKeys.kext that EMlyDinEsh prepared for you so I can test. Also providing problem reporting files. THanks!!


Check my post on
https://www.tonymacx86.com/threads/asus-ux430ua-kaby-lake-i7-7500u-intel-hd-graphics-620.225847/
you'll find kexts.
 
Last edited by a moderator:
thanks. tried loading your AsusNBFnKeys.kext. still no good. just wondering what the fix was for your? I also tried asus dsdt patches but still no good. any tips would be appeciated.

hard to say;(
I just used AsusNBFnKeys.kext (you will find kext in my EFI dir in first post) and "KeyboardBacklight Patch 4.txt" in firs post too for DSDT.
After that my keyboard lights started working.

If you familiar with console logs you can turn of debug in AsusNFnKeys.kext and after pressing FN+F3/4 in console log you should see more info and next you can try to find fix on forum where AsusNBFnKeys.kext comes from.
 
hard to say;(
I just used AsusNBFnKeys.kext (you will find kext in my EFI dir in first post) and "KeyboardBacklight Patch 4.txt" in firs post too for DSDT.
After that my keyboard lights started working.
n
that was it!!! i somehow missed the KeyboardBacklight Patch 4.txt in your post. :banghead:

so I just applied it, rebooted, and BAM! It's working!! I got 4 Levels of keyboard backlight! THANKS so much!
 
Method (_Q0E, 0, NotSerialized) // _Qxx: EC Query
{
Notify (PS2K, 0x0365)
}

Method (_Q0F, 0, NotSerialized) // _Qxx: EC Query
{
Notify (PS2K, 0x0366)
}

I have UX430 and can't get my SCREEN backlight control to work using applebacklightinjector, config.plist patch, and SSDT file.

Is this code above required to DSDT to make it work? I did not see it anywhere in guides.

My problem report files are here: https://www.tonymacx86.com/threads/...ghtinjector-kext.218222/page-121#post-1688666
 
Last edited:
I have UX430 and can't get my backlight control to work using applebacklightinjector, config.plist patch, and SSDT file.

Is this code above required to DSDT to make it work? I did not see it anywhere in guides.

My problem report files are here: https://www.tonymacx86.com/threads/...ghtinjector-kext.218222/page-121#post-1688666

in post #21 you have answer and all required files are in
https://www.tonymacx86.com/threads/asus-ux430ua-kaby-lake-i7-7500u-intel-hd-graphics-620.225847/ with DSDT patch for keyboard backlights
 
I meant for screen backlight control, sorry I wasn't clear. I had keyboard backlight working no problem thanks to your files. :)

I need to know if any patch to DSDT is required for screen backlight because I can't get mine to work.

Cheers and thanks for reply.

As i remember i used AsusNBFnKeys.kext and patch
Code:
# Patch by EMlyDinEsH
# Enables Fn brightness keys to work with my kext AsusNBFnKeys

# Replacing method _Q0E with code for Brightness down key to work
into Method label _Q0E replace_content begin
             If (ATKP)\n
                {\n
                   ^^^^ATKD.IANE (0x20)\n
                }
end;

# Replacing method _Q0F with code for Brightness up key to work
into Method label _Q0F replace_content begin
             If (ATKP)\n
                {\n
                   ^^^^ATKD.IANE (0x10)\n
                }
end;
 
Last edited by a moderator:
Status
Not open for further replies.
Back
Top