Just an observation about the keyboard brightness Fn key, in fact when adding these lines to the DSDT :
Device (SMC) // We will be faking up some of SMC Devices which are used in MacBookAir
{
Device (ALS0) // Ambient Light Sensor , we'll be faking this up , to get the ambient sensor to work , will find a way to link with cam
{
Name (_HID, "ACPI0008") //The ID used in macbook air
Name (_CID, "smc-als") // The one which talks with the ALS kext
Method (_ALI, 0, NotSerialized)
{
Return (0x012C)
}
Name (_ALR, Package (0x03)
{
Package (0x02)
{
0x46,
0x00
},
Package (0x02)
{
0x64,
0x012C
},
Package (0x02)
{
0x96,
0x03E8
}
})
}
The bezel activates for the keyboard backlight ( without affecting the lights themselves), so i was wondering if we could activate the screen brightness control and keyboard backlight adding something else to that. Seems that they are blocked by the lack of sensor lines in the DSDT maybe.
Just wondering...



Sign In
Create Account









