From bc8d92c5d982b7fc32d438997f5bc71df8c4b1ed Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Tue, 8 Jan 2019 03:46:32 +0100 Subject: [PATCH] Detect the PocketBook Basic Touch 2 (PB625) AFAICT, Pearl -> Carta, but same resolution/feature set. Fix #4366 --- frontend/device/pocketbook/device.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/frontend/device/pocketbook/device.lua b/frontend/device/pocketbook/device.lua index 47686eb93..ae5264993 100644 --- a/frontend/device/pocketbook/device.lua +++ b/frontend/device/pocketbook/device.lua @@ -210,6 +210,15 @@ local PocketBook624 = PocketBook:new{ emu_events_dev = "/var/dev/shm/emu_events", } +-- PocketBook Basic Touch 2 +local PocketBook625 = PocketBook:new{ + isTouchDevice = yes, + hasKeys = yes, + hasFrontlight = no, + display_dpi = 166, + emu_events_dev = "/var/dev/shm/emu_events", +} + -- PocketBook Touch Lux local PocketBook623 = PocketBook:new{ isTouchDevice = yes, @@ -280,6 +289,8 @@ elseif codename == "PocketBook 623" then return PocketBook623 elseif codename == "PocketBook 630" then return PocketBook630 +elseif codename == "PB625" then + return PocketBook625 elseif codename == "PB740" then return PocketBook740 elseif codename == "PocketBook Color Lux" then