You Are Here:

Community: Developer Discussion Boards

#1 Old N70 signal&battery strength disappear - 2008-04-04, 12:11

Join Date: Dec 2007
Posts: 42
sevenhills
Offline
Registered User
Hi every body
I craeted sis using py2sis. i was installed in N70 ,after installation , i was opened application ,application went background because i used appswitch ,but now phone menu signal indication and battery indication went disappear.......what the solution for this please any one help me
Reply With Quote

#2 Old Re: N70 signal&battery strength disappear - 2008-04-04, 19:50

Join Date: Dec 2007
Posts: 134
Location: India
kandyfloss's Avatar
kandyfloss
Offline
Regular Contributor
Quote:
Originally Posted by sevenhills View Post
Hi every body
I craeted sis using py2sis. i was installed in N70 ,after installation , i was opened application ,application went background because i used appswitch ,but now phone menu signal indication and battery indication went disappear.......what the solution for this please any one help me
Hi,

I would like you to post more details on the same so that we could help you,
Please let us know aht the script was like


Kandyfloss

V 7.0642.0
18-10-06
RH-51
Nokia 7610
Reply With Quote

#3 Old Re: N70 signal&battery strength disappear - 2008-04-04, 20:10

Join Date: Feb 2008
Posts: 2,542
Location: Bhavnagar, Gujarat, India
Send a message via Yahoo to gaba88 Send a message via Skype™ to gaba88
gaba88's Avatar
gaba88
Offline
Forum Nokia Champion
Quote:
Originally Posted by sevenhills View Post
Hi every body
I craeted sis using py2sis. i was installed in N70 ,after installation , i was opened application ,application went background because i used appswitch ,but now phone menu signal indication and battery indication went disappear.......what the solution for this please any one help me
hi sevenhills welcome to the python dibo
the problem must be wid your code. pl make us know what was in the application and if possible show a bit of code.
plz give feedback.
thankx


Gargi Das- http://gargidas.blogsot.com

Forum Nokia Python Wiki


Learn Python at http://mobapps.org/PyS60
Reply With Quote

#4 Old Re: N70 signal&battery strength disappear - 2008-04-05, 06:59

Join Date: Dec 2007
Posts: 42
sevenhills
Offline
Registered User
Actually application was to change mobile phone profile from general to silent at defined bluetooth region in this application i am using keycodes,aosocket lib module .But application is working nicely but batter and singnal tower indication is disappearing
Reply With Quote

#5 Old Re: N70 signal&battery strength disappear - 2008-04-05, 10:27

Join Date: Feb 2008
Posts: 2,542
Location: Bhavnagar, Gujarat, India
Send a message via Yahoo to gaba88 Send a message via Skype™ to gaba88
gaba88's Avatar
gaba88
Offline
Forum Nokia Champion
Quote:
Originally Posted by sevenhills View Post
Actually application was to change mobile phone profile from general to silent at defined bluetooth region in this application i am using keycodes,aosocket lib module .But application is working nicely but batter and singnal tower indication is disappearing
hi sevenhills
the problem in ur application may be that the application is running continiously without any break.
plz provide some break in the infinite loop if u r using.
plz give a feed back.
thanx


Gargi Das- http://gargidas.blogsot.com

Forum Nokia Python Wiki


Learn Python at http://mobapps.org/PyS60
Reply With Quote

#6 Old Re: N70 signal&battery strength disappear - 2008-04-05, 21:47

Join Date: Dec 2007
Posts: 134
Location: India
kandyfloss's Avatar
kandyfloss
Offline
Regular Contributor
Quote:
Originally Posted by sevenhills View Post
Actually application was to change mobile phone profile from general to silent at defined bluetooth region in this application i am using keycodes,aosocket lib module .But application is working nicely but batter and singnal tower indication is disappearing
Ah, May be its beacuse of the way you use the appswitch module

Would you mind sharing the code?


Kandyfloss

V 7.0642.0
18-10-06
RH-51
Nokia 7610
Reply With Quote

#7 Old Re: N70 signal&battery strength disappear - 2008-04-08, 13:01

Join Date: Dec 2007
Posts: 42
sevenhills
Offline
Registered User
import e32
import appuifw
import aosocketnativenew
from pdis.lib.logging import *
import httplib, urllib
from key_codes import *
import keypress
import appswitch
import sysinfo


appswitch.switch_to_fg(u"Telephone")

init_logging(FileLogger("e:\\bt_probing.txt"))

def tell(string):

if e32.is_ui_thread():
print string
e32.ao_yield()

# ----------------------------------
from aosocket.symbian.bt_device_discoverer import *
from socket import * # for obex file send

def discovered(error, devices, cb_param):

if error == 0:

a=0
for address, name in devices:


e32.ao_sleep(1)
if name == "SH-SYS-117" or name == "BTControl" or address == "00:a0:96:14:17:c0" or address == "11:11:11:11:11:11":

a=1

#silent activation
e32.ao_sleep(1)
keypress.simulate_key(EKeyPowerOff,EKeyPowerOff)
e32.ao_sleep(1)
keypress.simulate_key(EKeyDownArrow,EKeyDownArrow)
e32.ao_sleep(1)
keypress.simulate_key(EKeyDownArrow,EKeyDownArrow)
e32.ao_sleep(1)
keypress.simulate_key(EKeyDownArrow,EKeyDownArrow)
e32.ao_sleep(1)
keypress.simulate_key(EKeyLeftSoftkey,EKeyLeftSoftkey)
e32.ao_sleep(5)






if a==0:




e32.ao_sleep(1)
keypress.simulate_key(EKeyPowerOff,EKeyPowerOff)
e32.ao_sleep(1)
keypress.simulate_key(EKeyDownArrow,EKeyDownArrow)
e32.ao_sleep(1)
keypress.simulate_key(EKeyDownArrow,EKeyDownArrow)
e32.ao_sleep(1)
keypress.simulate_key(EKeyLeftSoftkey,EKeyLeftSoftkey)
e32.ao_sleep(5)







while(1):
try:

_discoverer = BtDeviceLister()
_discoverer.discover_all(discovered, None)

e32.ao_sleep(30)

except:
tell("init failure")

This my code please reply me...why signal disappearing
Reply With Quote

#8 Old Re: N70 signal&battery strength disappear - 2008-04-08, 13:10

Join Date: Sep 2005
Posts: 314
Location: Finland, Helsinki
aaaaapo
Offline
Regular Contributor
Quote:
Originally Posted by sevenhills View Post
Hi every body
I craeted sis using py2sis. i was installed in N70 ,after installation , i was opened application ,application went background because i used appswitch ,but now phone menu signal indication and battery indication went disappear.......what the solution for this please any one help me
It is an old pys60/symbian-bug:

Search PyS60 -> Tracker -> Bugs in SourceForge:
http://sourceforge.net/tracker/index...55&atid=790646
Reply With Quote

#9 Old Re: N70 signal&battery strength disappear - 2008-04-09, 11:14

Join Date: Dec 2007
Posts: 42
sevenhills
Offline
Registered User
I tried but not working.can you suggest good one.....i need urgent
Quote:
Originally Posted by aaaaapo View Post
It is an old pys60/symbian-bug:

Search PyS60 -> Tracker -> Bugs in SourceForge:
http://sourceforge.net/tracker/index...55&atid=790646
Reply With Quote

#10 Old Re: N70 signal&battery strength disappear - 2008-04-09, 12:10

Join Date: Dec 2007
Posts: 42
sevenhills
Offline
Registered User
let me know how to avoid disappear singal and battery indication.........i posted my code also.please help me......
i tried e32.ao_lock........again disappearing.....
Quote:
Originally Posted by sevenhills View Post
I tried but not working.can you suggest good one.....i need urgent
Reply With Quote
Reply « Previous Thread | Next Thread »
Display Modes
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules

You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump
Similar Threads
Thread Thread Starter Forum Replies Last Post
send/recieve sms in pc from n70 using pc suite api or sdk 3.0 mindstien PC Suite API and PC Connectivity SDK 2 2009-11-07 11:56
AT Command Support for N70 - Urgent sureshkumar435 General Messaging 9 2009-02-11 17:40
N70: System.out redirection tool (Ecmt and RedMIDlet). ThereseM Mobile Java Tools & SDKs 4 2008-04-25 11:01
n70 incoming sms (from n70) to linux PC lsropia General Discussion 0 2008-02-27 08:06
Bluetooth GPS and N70 ssandor Mobile Java Networking & Messaging & Security 3 2006-05-18 16:21

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia 
RDF Facets: qdcZidentifierQSxhttpE3aE2fE2fdiscussionE2eforumE2enokiaE2ecomhttpE3aE2fE2fdiscussionE2eforumE2enokiaE2ecomE2fforumE2fshowthreadE2ephpE3ftE3d81449X qdcZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qdcZtypeQUqfntypeZCommunityContentQ qdcZtypeQUqfntypeZE44iscussionQ qdcZtypeQUqfntypeZE44iscussionContentQ qdcZtypeQUqfntypeZE52esourceQ qdcZtypeQUqfntypeZWebpageQ qdcZtypeQUqmarsZManagedE52esourceQ qdcZtypeQUqwebZInformationE52esourceQ qdcZtypeQUqwebZPageQ qdcZtypeQUqwebZE52esourceQ qdcZtypeQUqrdfsZE52esourceQ qfnZtopicQUqfnTopicZpythonQ qfnZtypeQUqfntypeZCommunityContentQ qfnZtypeQUqfntypeZE44iscussionQ qfnZtypeQUqfntypeZE44iscussionContentQ qfnZtypeQUqfntypeZE52esourceQ qfnZtypeQUqfntypeZWebpageQ qfnZuserE5ftagQSxpythonX qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX qrdfZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qrdfZtypeQUqfntypeZCommunityContentQ qrdfZtypeQUqfntypeZE44iscussionQ qrdfZtypeQUqfntypeZE44iscussionContentQ qrdfZtypeQUqfntypeZE52esourceQ qrdfZtypeQUqfntypeZWebpageQ qrdfZtypeQUqmarsZManagedE52esourceQ qrdfZtypeQUqwebZInformationE52esourceQ qrdfZtypeQUqwebZPageQ qrdfZtypeQUqwebZE52esourceQ qrdfZtypeQUqrdfsZE52esourceQ