mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Add PocketBook Verse Pro Color (PB634K3) (#12476)
This commit is contained in:
@@ -641,6 +641,21 @@ local PocketBook634 = PocketBook:extend{
|
||||
hasNaturalLight = yes,
|
||||
}
|
||||
|
||||
-- PocketBook Verse Pro Color (PB634K3)
|
||||
local PocketBook634K3 = PocketBook:extend{
|
||||
model = "PBVerseProColor",
|
||||
display_dpi = 300,
|
||||
hasColorScreen = yes,
|
||||
canHWDither = yes, -- Adjust color saturation with inkview
|
||||
canUseCBB = no, -- 24bpp
|
||||
isAlwaysPortrait = yes,
|
||||
hasNaturalLight = yes,
|
||||
}
|
||||
|
||||
function PocketBook634K3._fb_init(fb, finfo, vinfo)
|
||||
vinfo.bits_per_pixel = 24
|
||||
end
|
||||
|
||||
-- PocketBook Aqua (640)
|
||||
local PocketBook640 = PocketBook:extend{
|
||||
model = "PBAqua",
|
||||
@@ -872,6 +887,8 @@ elseif codename == "633" then
|
||||
return PocketBook633
|
||||
elseif codename == "634" then
|
||||
return PocketBook634
|
||||
elseif codename == "634K3" then
|
||||
return PocketBook634K3
|
||||
elseif codename == "640" then
|
||||
return PocketBook640
|
||||
elseif codename == "641" then
|
||||
|
||||
Reference in New Issue
Block a user