diff options
author | Sigrid Solveig Haflínudóttir <sigrid@ftrv.se> | 2022-10-06 19:45:25 +0000 |
---|---|---|
committer | Sigrid Solveig Haflínudóttir <sigrid@ftrv.se> | 2022-10-06 19:45:25 +0000 |
commit | b38a3d2a0d0f2022bab40eec4975179daa0ceee1 (patch) | |
tree | f9035da23a78ee6bea241206621b95834192c196 /sys/include | |
parent | 6960465997ff708b06410d0a93b629ec75e476c9 (diff) |
nusb/kb, aux/kbdfs: add brightness down/up media keys
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/keyboard.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sys/include/keyboard.h b/sys/include/keyboard.h index 126fb3c33..d95374797 100644 --- a/sys/include/keyboard.h +++ b/sys/include/keyboard.h @@ -45,12 +45,14 @@ enum { Kscrollonedown= KF|0x21, /* multimedia keys - no refunds */ - Ksbwd= KF|0x22, - Ksfwd= KF|0x23, - Kpause= KF|0x24, - Kvoldn= KF|0x25, - Kvolup= KF|0x26, - Kmute= KF|0x27, + Ksbwd= KF|0x22, /* skip backwards */ + Ksfwd= KF|0x23, /* skip forward */ + Kpause= KF|0x24, /* play/pause */ + Kvoldn= KF|0x25, /* volume decrement */ + Kvolup= KF|0x26, /* volume increment */ + Kmute= KF|0x27, /* (un)mute */ + Kbrtdn= KF|0x28, /* brightness decrement */ + Kbrtup= KF|0x29, /* brightness increment */ Ksoh= 0x01, Kstx= 0x02, |