2020-07-20 22:52:50 +00:00
|
|
|
local BasePowerD = require("device/generic/powerd")
|
|
|
|
local SDL = require("ffi/SDL2_0")
|
|
|
|
|
2020-08-19 20:41:10 +00:00
|
|
|
local SDLPowerD = BasePowerD:new{
|
|
|
|
-- these values are just used on the emulator
|
|
|
|
hw_intensity = 50,
|
|
|
|
fl_min = 0,
|
|
|
|
fl_max = 100,
|
|
|
|
fl_warmth = 50,
|
|
|
|
fl_warmth_min = 0,
|
|
|
|
fl_warmth_max = 100,
|
|
|
|
}
|
|
|
|
|
2020-09-21 01:48:06 +00:00
|
|
|
function SDLPowerD:frontlightIntensityHW()
|
|
|
|
return self.hw_intensity
|
|
|
|
end
|
|
|
|
|
2020-08-19 20:41:10 +00:00
|
|
|
function SDLPowerD:setIntensityHW(intensity)
|
|
|
|
require("logger").info("set brightness to", intensity)
|
|
|
|
self.hw_intensity = intensity or self.hw_intensity
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function SDLPowerD:setWarmth(level)
|
|
|
|
require("logger").info("set warmth to", level)
|
|
|
|
self.fl_warmth = level or self.fl_warmth
|
|
|
|
end
|
2020-07-20 22:52:50 +00:00
|
|
|
|
|
|
|
function SDLPowerD:getCapacityHW()
|
|
|
|
local _, _, _, percent = SDL.getPowerInfo()
|
2020-07-23 22:06:23 +00:00
|
|
|
-- -1 looks a bit odd compared to 0
|
2020-07-20 22:52:50 +00:00
|
|
|
if percent == -1 then return 0 end
|
|
|
|
return percent
|
|
|
|
end
|
|
|
|
|
|
|
|
function SDLPowerD:isChargingHW()
|
|
|
|
local ok, charging = SDL.getPowerInfo()
|
|
|
|
if ok then return charging end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return SDLPowerD
|