mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Kobo: initial support for Kobo Aura second edition (Kobo star)
This fixes #2418.
This commit is contained in:
committed by
Qingping Hou
parent
7f318c0762
commit
69f70ac16e
@@ -95,6 +95,16 @@ local KoboPhoenix = Kobo:new{
|
||||
viewport = Geom:new{x=0, y=0, w=758, h=1012},
|
||||
}
|
||||
|
||||
-- Kobo Aura second edition:
|
||||
local KoboStar = Kobo:new{
|
||||
model = "Kobo_star",
|
||||
hasFrontlight = yes,
|
||||
touch_alyssum_protocol = true,
|
||||
display_dpi = 212,
|
||||
-- the bezel covers 12 pixels at the bottom:
|
||||
viewport = Geom:new{x=0, y=0, w=758, h=1012},
|
||||
}
|
||||
|
||||
-- Kobo Glo HD:
|
||||
local KoboAlyssum = Kobo:new{
|
||||
model = "Kobo_alyssum",
|
||||
@@ -352,6 +362,8 @@ elseif codename == "alyssum" then
|
||||
return KoboAlyssum
|
||||
elseif codename == "pika" then
|
||||
return KoboPika
|
||||
elseif codename == "star" then
|
||||
return KoboStar
|
||||
elseif codename == "daylight" then
|
||||
return KoboDaylight
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user