diff --git a/frontend/device/pocketbook/device.lua b/frontend/device/pocketbook/device.lua index fd9890db7..a456e9c5b 100644 --- a/frontend/device/pocketbook/device.lua +++ b/frontend/device/pocketbook/device.lua @@ -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