That example i think this get less resources
counter_timeout = 0
on_sleep = 0
function on_init()
start_timer(0,1000,0,0)
end
function on_timer(timer_id)
if timer_id == 0 then
counter_timeout = counter_timeout+1
if(counter_timeout == 3)then
change_screen(1) --sleep page
set_brightness(0)
end
end
end
function on_press(state,x,y)
counter_timeout = 0
if(on_sleep == 1)then
set_brightness(100)
on_sleep = 0
end
end