Archived:Low network signal strength notification in PySymbian
Aquivado: Este artigo foi arquivado, pois o conteúdo não é mais considerado relevante para se criar soluções comerciais atuais. Se você achar que este artigo ainda é importante, inclua o template {{ForArchiveReview|escreva a sua justificativa}}.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
Article Metadata
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]]


(no comments yet)