Backlight brightness

Hi, I’m wondering—why aren’t there any default macros for controlling the keyboard backlight?

Here’s what I’m currently doing for my UHK80:

setVar currentBrightnessLevel (($currentBrightnessLevel + 1) % 3)
set leds.brightness ($currentBrightnessLevel * 0.5)

E in oninit: setVar currentBrightnessLevel 2
However, there’s a serious problem: this keyword also controls the OLED display’s backlight, to the point where it turns it off! And that’s not what I want.

I’d like to be able to turn the backlight on and off (and when it’s on, have it follow the timing rules set by the agent) without this affecting the behavior of the OLED display.

Thanks