2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00
koreader/frontend/device/kobo/powerd.lua

53 lines
1.3 KiB
Lua
Raw Normal View History

local BasePowerD = require("device/generic/powerd")
local KoboPowerD = BasePowerD:new{
2014-08-27 18:56:09 +00:00
fl_min = 0, fl_max = 100,
2014-03-13 13:52:43 +00:00
flIntensity = 20,
restore_settings = true,
fl = nil,
2014-10-03 08:11:53 +00:00
2014-03-13 13:52:43 +00:00
batt_capacity_file = "/sys/devices/platform/pmic_battery.1/power_supply/mc13892_bat/capacity",
is_charging_file = "/sys/devices/platform/pmic_battery.1/power_supply/mc13892_bat/charge_now",
battCapacity = nil,
is_charging = nil,
}
function KoboPowerD:init()
if self.device.hasFrontlight() then
local kobolight = require("ffi/kobolight")
local ok, light = pcall(kobolight.open)
if ok then self.fl = light end
end
end
function KoboPowerD:toggleFrontlight()
2014-03-13 13:52:43 +00:00
if self.fl ~= nil then
self.fl:toggle()
end
end
function KoboPowerD:setIntensityHW()
2014-03-13 13:52:43 +00:00
if self.fl ~= nil then
self.fl:setBrightness(self.flIntensity)
end
end
function KoboPowerD:setIntensitySW()
if self.fl ~= nil then
self.fl:restoreBrightness(self.flIntensity)
end
end
function KoboPowerD:getCapacityHW()
2014-03-13 13:52:43 +00:00
self.battCapacity = self:read_int_file(self.batt_capacity_file)
return self.battCapacity
end
function KoboPowerD:isChargingHW()
2014-03-13 13:52:43 +00:00
self.is_charging = self:read_int_file(self.is_charging_file)
return self.is_charging == 1
end
return KoboPowerD