It's just a generic Bluetooth 3.0 keyboard.
I was able to get the keyboard working in KOReader by adding
hasKeys = yes,
hasDPad = yes,
under 'local KindlePaperWhite6 = Kindle:extend{' in 'frontend/device/kindle/device.lua'
and
self.input = require("device/input"):new{
device = self,
event_map = dofile("frontend/device/kindle/event_map_kindle4.lua"),
}
under 'function KindlePaperWhite6:init()'.
'hasDPad = yes,' isn't necessary but allows navigation with the arrow keys
|