mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Added support for pb627 (touch lux 4) (#4362)
This commit is contained in:
@@ -164,6 +164,15 @@ local PocketBook840 = PocketBook:new{
|
||||
emu_events_dev = "/var/dev/shm/emu_events",
|
||||
}
|
||||
|
||||
-- PocketBook Lux 4
|
||||
local PocketBook627 = PocketBook:new{
|
||||
isTouchDevice = yes,
|
||||
hasKeys = yes,
|
||||
hasFrontlight = yes,
|
||||
display_dpi = 212,
|
||||
emu_events_dev = "/var/dev/shm/emu_events",
|
||||
}
|
||||
|
||||
-- PocketBook HD Touch
|
||||
local PocketBook631 = PocketBook:new{
|
||||
isTouchDevice = yes,
|
||||
@@ -236,6 +245,8 @@ local codename = PocketBook:getDeviceModel()
|
||||
|
||||
if codename == "PocketBook 840" then
|
||||
return PocketBook840
|
||||
elseif codename == "PB627" then
|
||||
return PocketBook627
|
||||
elseif codename == "PB631" then
|
||||
return PocketBook631
|
||||
elseif codename == "PocketBook 626" then
|
||||
|
||||
Reference in New Issue
Block a user