Archived:Alarm at specified cell id using PySymbian
m |
(wiki link added) |
||
| Line 40: | Line 40: | ||
app_lock = e32.Ao_lock() | app_lock = e32.Ao_lock() | ||
app_lock.wait() | app_lock.wait() | ||
| + | |||
| + | </code> | ||
| + | |||
| + | == Related Wiki Links == | ||
| + | |||
| + | [[How to get info on cell location]] | ||
Revision as of 14:47, 23 January 2009
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 cell id of the location matches with the cell id you input,
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()

