pocketbook: fix for devices without natural light :p

reviewable/pr6550/r1
Martín Fdez 4 years ago committed by Martín Fernández
parent 671ea00a2f
commit 09e5143d2f

@ -25,8 +25,10 @@ local PocketBookPowerD = BasePowerD:new{
function PocketBookPowerD:init() function PocketBookPowerD:init()
-- needed for SetFrontlightState / GetFrontlightState -- needed for SetFrontlightState / GetFrontlightState
inkview.OpenScreen() inkview.OpenScreen()
if self.device:hasNaturalLight() then
local color = inkview.GetFrontlightColor() local color = inkview.GetFrontlightColor()
self.fl_warmth = color >= 0 and color or 0 self.fl_warmth = color >= 0 and color or 0
end
end end
function PocketBookPowerD:frontlightIntensityHW() function PocketBookPowerD:frontlightIntensityHW()
@ -43,8 +45,10 @@ function PocketBookPowerD:setIntensityHW(intensity)
end end
function PocketBookPowerD:setWarmth(level) function PocketBookPowerD:setWarmth(level)
if self.fl_warmth then
self.fl_warmth = level or self.fl_warmth self.fl_warmth = level or self.fl_warmth
inkview.SetFrontlightColor(self.fl_warmth) inkview.SetFrontlightColor(self.fl_warmth)
end
end end
function PocketBookPowerD:getCapacityHW() function PocketBookPowerD:getCapacityHW()

Loading…
Cancel
Save