Contribute
Register

[solved] Remapping brightness keys

Status
Not open for further replies.
Joined
Oct 4, 2015
Messages
102
CPU
i5-4210U
Graphics
HD 4400, Radeon R7
Mac
  1. MacBook Air
Mobile Phone
  1. iOS
My laptop uses ACPI methods to for the brightness keys. However, both keys only end up increasing brightness.
Code:
Method (_Q63, 0, NotSerialized)
            {
                Notify (PS2K, 0x0406)    //Brightness down
            }

            Method (_Q62, 0, NotSerialized)
            {
                Notify (PS2K, 0x0405)   //Brightness up
            }

How do I determine the correct value for brightness down?
 
My laptop uses ACPI methods to for the brightness keys. However, both keys only end up increasing brightness.
Code:
Method (_Q63, 0, NotSerialized)
            {
                Notify (PS2K, 0x0406)    //Brightness down
            }

            Method (_Q62, 0, NotSerialized)
            {
                Notify (PS2K, 0x0405)   //Brightness up
            }

How do I determine the correct value for brightness down?
It's a known issue in Sierra.
[README] Common (some unsolved) Problems in 10.12 Sierra
 
My laptop uses ACPI methods to for the brightness keys. However, both keys only end up increasing brightness.
Code:
Method (_Q63, 0, NotSerialized)
            {
                Notify (PS2K, 0x0406)    //Brightness down
            }

            Method (_Q62, 0, NotSerialized)
            {
                Notify (PS2K, 0x0405)   //Brightness up
            }

How do I determine the correct value for brightness down?

You could send F14/F15 instead:
Code:
Method (_Q63, 0, NotSerialized)
            {
                Notify (PS2K, 0x0365)    //F14
            }

            Method (_Q62, 0, NotSerialized)
            {
                Notify (PS2K, 0x0366)   //F15
            }
 
You could send F14/F15 instead:
Code:
Method (_Q63, 0, NotSerialized)
            {
                Notify (PS2K, 0x0365)    //F14
            }

            Method (_Q62, 0, NotSerialized)
            {
                Notify (PS2K, 0x0366)   //F15
            }
Works perfectly! Thanks!
 
Status
Not open for further replies.
Back
Top