mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Add PB641 aka Aqua 2 support (#4445)
Add Pocketbook 641 aka Aqua 2 support. It has 212 ppi. The model code detected is 641. Tested on real device, works well.
This commit is contained in:
committed by
Frans de Jonge
parent
41b885f073
commit
ea424e621e
@@ -238,6 +238,15 @@ local PocketBook630 = PocketBook:new{
|
||||
emu_events_dev = "/dev/shm/emu_events",
|
||||
}
|
||||
|
||||
-- PocketBook Aqua 2
|
||||
local PocketBook641 = PocketBook:new{
|
||||
isTouchDevice = yes,
|
||||
hasKeys = yes,
|
||||
hasFrontlight = yes,
|
||||
display_dpi = 212,
|
||||
emu_events_dev = "/var/dev/shm/emu_events",
|
||||
}
|
||||
|
||||
-- PocketBook Color Lux
|
||||
local PocketBookColorLux = PocketBook:new{
|
||||
isTouchDevice = yes,
|
||||
@@ -261,6 +270,8 @@ elseif codename == "PB631" then
|
||||
return PocketBook631
|
||||
elseif codename == "PB632" then
|
||||
return PocketBook632
|
||||
elseif codename == "PB641" then
|
||||
return PocketBook641
|
||||
elseif codename == "PocketBook 626" then
|
||||
return PocketBook626
|
||||
elseif codename == "PocketBook 624" then
|
||||
|
||||
Reference in New Issue
Block a user