mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
20 lines
352 B
Lua
20 lines
352 B
Lua
--[[
|
|
event map for Kindle devices with control buttons & DPad
|
|
--]]
|
|
|
|
return {
|
|
[29] = "ScreenKB",
|
|
[102] = "Home",
|
|
[103] = "Up",
|
|
[104] = "LPgFwd",
|
|
[105] = "Left",
|
|
[106] = "Right",
|
|
[108] = "Down",
|
|
[109] = "RPgBack",
|
|
[139] = "Menu",
|
|
[158] = "Back",
|
|
[191] = "RPgFwd",
|
|
[193] = "LPgBack",
|
|
[194] = "Press",
|
|
}
|