Archived:Alarm at specified cell id using PySymbian
Problem Faced
You are travelling in train and you know the "destination's cell id", but you want to sleep for while. Just enter the cell id of the destination and you will be woke up by the alarm.
Solution by Shubhendra Singh
Just use this code, it will trigger alarm as soon as you get even faint signals,
import appuifw,e32,location
from graphics import *
from audio import *
abc=0
f = 'Z:\\Nokia\\Sounds\\Digital\\Alarm.mid' # Could be changed, this is what you will hear.
data=appuifw.query(u"enter the cell id","number")
while abc == 0:
xyz=location.gsm_location()
if(xyz[3] == data):
abc=1
s = Sound.open(f)
s.play(KMdaRepeatForever) # Alarm will play until Network is available.
def quit():
s.stop()
app_lock.signal()
appuifw.app.set_exit()
def handle_redraw(rect):
canvas.blit(img)
canvas=appuifw.Canvas(event_callback=None, redraw_callback=handle_redraw)
appuifw.app.body=canvas
appuifw.app.title = u"location Mode"
appuifw.app.exit_key_handler = quit # Press "Quit" to quit application.
app_lock = e32.Ao_lock()
app_lock.wait()

