From ea424e621ea88ef0519e86112b0373adb5b6efa2 Mon Sep 17 00:00:00 2001 From: Viktor Sokyrko Date: Sat, 5 Jan 2019 09:02:45 +0100 Subject: [PATCH] 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. --- 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 8d3968b81..47686eb93 100644 --- a/frontend/device/pocketbook/device.lua +++ b/frontend/device/pocketbook/device.lua @@ -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