mirror of
https://github.com/koreader/koreader
synced 2024-11-18 03:25:46 +00:00
16 lines
268 B
Lua
16 lines
268 B
Lua
|
--[[
|
||
|
event map for Kindle devices with control buttons & DPad
|
||
|
--]]
|
||
|
|
||
|
return {
|
||
|
[29] = "ScreenKB",
|
||
|
[102] = "Home",
|
||
|
[103] = "Up",
|
||
|
[104] = "LPgFwd",
|
||
|
[108] = "Down",
|
||
|
[158] = "Back",
|
||
|
[191] = "RPgFwd",
|
||
|
[193] = "LPgBack",
|
||
|
[194] = "Press",
|
||
|
}
|