Namespaces
Variants
Actions
Revision as of 07:08, 27 July 2012 by hamishwillee (Talk | contribs)

Archived:Low network signal strength notification in PySymbian

Jump to: navigation, search
MultiMediaTile.png
Article Metadata

Article
Created: shubhendra (30 Mar 2008)
Last edited: hamishwillee (27 Jul 2012)

Problem Faced

Many a times it happens that while you are traveling you need to call someone, but no network signals are available or what we call "No Network Services Available". What generally happens is that there might be a small distance in between where Network was available or some signals are there, so that you can make a call but as you might not notice that while traveling you have to wait for long time until there is Network available for prolonged time like while passing through a city.


Solution by Shubhendra Singh

Just use this code, it will trigger alarm as soon as you get even faint signals,

from audio import *
import appuifw,e32,sysinfo
from graphics import *
abc=0
f = 'Z:\\Nokia\\Sounds\\Digital\\Alarm.mid' # Could be changed, this is what you will hear.
while abc == 0:
if(sysinfo.signal()>0):
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"Signal Mode"
appuifw.app.exit_key_handler = quit # Press "Quit" to quit application.
app_lock = e32.Ao_lock()
app_lock.wait()
 
[[Category:Code Snippet]]
124 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved