View Single Post
Old 03-21-2016, 09:35 PM   #16
djalma
Member
djalma doesn't litterdjalma doesn't litter
 
Posts: 14
Karma: 116
Join Date: Feb 2016
Device: Kobo Glo HD
Quote:
Originally Posted by Ken Maltby View Post
The thing is, Multi-touch is only supposed to work on the 6" Aura, not on the other Kobos. Someone should look into why/how it is working on the Glo HD. Perhaps it could lead to having it work on other devices.

Luck;
Ken
The only difference is new touch features in Glo HD firmware?¿? I had touch gestures like pinch to zoom in old sony prs T3 that is an infrared screen. I don't know why should not be supported in H2O...:

Quote:
Originally Posted by device.lua
local Kobo = Generic:new{
model = "Kobo",
isKobo = yes,
isTouchDevice = yes, -- all of them are

-- most Kobos have X/Y switched for the touch screen
touch_switch_xy = true,
-- most Kobos have also mirrored X coordinates
touch_mirrored_x = true,
-- enforce protrait mode on Kobos:
isAlwaysPortrait = yes,
}

-- TODO: hasKeys for some devices?

-- Kobo Touch:
local KoboTrilogy = Kobo:new{
model = "Kobo_trilogy",
touch_switch_xy = false,
hasKeys = yes,
}

-- Kobo Mini:
local KoboPixie = Kobo:new{
model = "Kobo_pixie",
display_dpi = 200,
-- bezel:
viewport = Geom:new{x=0, y=2, w=596, h=794},
}

-- Kobo Aura H2O:
local KoboDahlia = Kobo:new{
model = "Kobo_dahlia",
hasFrontlight = yes,
touch_phoenix_protocol = true,
display_dpi = 265,
-- the bezel covers the top 11 pixels:
viewport = Geom:new{x=0, y=11, w=1080, h=1429},
}

-- Kobo Aura HD:
local KoboDragon = Kobo:new{
model = "Kobo_dragon",
hasFrontlight = yes,
display_dpi = 265,
}

-- Kobo Glo:
local KoboKraken = Kobo:new{
model = "Kobo_kraken",
hasFrontlight = yes,
display_dpi = 212,
}

-- Kobo Aura:
local KoboPhoenix = Kobo:new{
model = "Kobo_phoenix",
hasFrontlight = yes,
touch_phoenix_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",
hasFrontlight = yes,
touch_phoenix_protocol = true,
touch_alyssum_protocol = true,
display_dpi = 300,
}
===============
===============
Quote:
Originally Posted by jonch919 View Post
Should I raise the question at Github instead? Maybe ask for way to use one-finger swipe instead of two-finger swipe for frontlight?
Quote:
Originally Posted by Ken Maltby View Post
It looks like the issue has been added to the next stable release milestone. The stable releases have been dated in April and November.

Luck;
Ken
Where? I can't see that in github... Exist some issues related to device already suported but I can't see for support "new devices"(for new i mean: not supported rightnow :P )
#1761 Maybe?¿? but not comments about change light with 1 finger or something like that...

Regards.

Last edited by djalma; 03-21-2016 at 10:10 PM.
djalma is offline   Reply With Quote