local time=0
local bz=0
local dsq=0
function on_systick()
local level = get_backlight()
if level==0 and bz==0 then
bz=1
time=1
start_timer(2, 30000, 0, 1)
start_timer(1, 60000, 0, 1)
end
if level >=0 then
time=0
bz=0
end
end
function on_timer(dsq)
if dsq==2 then
if level==0 and time ==1 then
sleepmode (1)
end
end
if dsq==1 then
if level==0 and time ==1 then
standbymode (1)
end
end
end