Add PocketBook Verse Pro Color (PB634K3) (#12476)

This commit is contained in:
ElimGarak1
2024-09-18 20:07:05 +02:00
committed by GitHub
parent 2e6407357d
commit 6dcafb329a

View File

@@ -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