FJ Software Foren-Übersicht  
 Homepage   •  Suchen   •  FAQ   •  Mitgliederliste   •  Registrieren   •  Login
 Can u help me to share small piece of code? Nächstes Thema anzeigen
Vorheriges Thema anzeigen
Neues Thema eröffnenNeue Antwort erstellen
Autor Nachricht
blackmarlincode



Anmeldedatum: 03.07.2007
Beiträge: 9

BeitragVerfasst am: Di Jul 03, 2007 03:22 Antworten mit ZitatNach oben

Sorry for my poor english Laughing
I'm on final project. And need help for your related software "my phone explorer"
My name is Hendro. Student of Electrical Engineering of Jember Univercity, Indonesia.
My project is to determine if the speeds of mobility affected the speeds of internet over GPRS..
My plan is using Sony Ericsson k510i connected to Notebook using USB Data Cable.

The problems is:
1. I don't know how to check is the phone connected?
And how auto determine maximum BaudRate?
2. I want to know how to read this following Phone data :
- Phone Model
- Signal Quality
- Cell ID
- Provider
Image
I'm using Visual Basic 6.....
Those data is very important for my final project..
Can u help me to share small piece of code Question Question Question Question

Greetz
Hendro, Student of Jember Univercity, Indonesia


Zuletzt bearbeitet von blackmarlincode am Mi Jul 04, 2007 00:05, insgesamt 2-mal bearbeitet
Benutzer-Profile anzeigenPrivate Nachricht sendenYahoo Messenger
Cor



Anmeldedatum: 07.06.2006
Beiträge: 127
Wohnort: Gouda (NL)

BeitragVerfasst am: Di Jul 03, 2007 06:58 Antworten mit ZitatNach oben

Hi Hendro,

You'd better remove your I-MEI on the picture. People can misuse your I-MEI. Also your call-id can be misused.

Regards,

Cor

_________________
Cor Oskam
Dutch Translator
g900 Vista MPE 1.7
Benutzer-Profile anzeigenPrivate Nachricht senden
FJ
Site Admin


Anmeldedatum: 15.02.2006
Beiträge: 31467
Wohnort: Tirol

BeitragVerfasst am: Di Jul 03, 2007 18:15 Antworten mit ZitatNach oben

I'll tell you the basics. If you are able to build and understand this i will tell you how to get the informations.

- you need to communicate to a serial port (pure API or MSComm.ocx)
- got to the developersite of SonyEricsson and download the AT-Commandrefrence
- try to implemnent easy requests in your app (like AT+CBC for accu-status)
Benutzer-Profile anzeigenPrivate Nachricht sendenE-Mail sendenICQ-Nummer
blackmarlincode



Anmeldedatum: 03.07.2007
Beiträge: 9

BeitragVerfasst am: Do Jul 05, 2007 16:03 Antworten mit ZitatNach oben

Yup,thx for the info.
i've already download AT Command reference from Developer SE.com
I'm still learn how to implement it.

My Next Question is:
1. I'm still confuse with AT command AT+CSQ for checking Signal Streght.
is <rssi> 31 [-51 dBm or greater] is being defined as 100% Question Question

Thx
Hendro, Student of Jember Univercity, Indonesia
Benutzer-Profile anzeigenPrivate Nachricht sendenYahoo Messenger
FJ
Site Admin


Anmeldedatum: 15.02.2006
Beiträge: 31467
Wohnort: Tirol

BeitragVerfasst am: Do Jul 05, 2007 16:50 Antworten mit ZitatNach oben

Correct way to decode the Value

Code:

Val=Value from the Phone
dBm=Strength for display
Percent=Percent for display

   Select Case Val
    Case 0: dBm = -113
    Case 1: dBm = -111
    Case 2 To 30: dBm = -49 - 2 * Val
    Case 31: dBm = -51
   End Select

   Percent = Round(100 / 31 * Val)
Benutzer-Profile anzeigenPrivate Nachricht sendenE-Mail sendenICQ-Nummer
blackmarlincode



Anmeldedatum: 03.07.2007
Beiträge: 9

BeitragVerfasst am: So Jul 08, 2007 16:01 Antworten mit ZitatNach oben

What is AT command for reading Reception and cell information?
Those are in Phone>Main Menu>Messages>settings>area info>

Rolling Eyes Rolling Eyes

Thx for u'r help
Benutzer-Profile anzeigenPrivate Nachricht sendenYahoo Messenger
FJ
Site Admin


Anmeldedatum: 15.02.2006
Beiträge: 31467
Wohnort: Tirol

BeitragVerfasst am: So Jul 08, 2007 16:18 Antworten mit ZitatNach oben

AT+CREG=2, after this command AT+CREG?. This is for CellID
AT+COPS? is for the operator name.

Just take a look at the logfile of MyPhoneExplorer. You'll find everything there.
Benutzer-Profile anzeigenPrivate Nachricht sendenE-Mail sendenICQ-Nummer
blackmarlincode



Anmeldedatum: 03.07.2007
Beiträge: 9

BeitragVerfasst am: Mo Jul 09, 2007 06:03 Antworten mit ZitatNach oben

Where i can find LOG of MyPhoneExplorer??
i can't find itu at %temp%... Surprised
Benutzer-Profile anzeigenPrivate Nachricht sendenYahoo Messenger
FJ
Site Admin


Anmeldedatum: 15.02.2006
Beiträge: 31467
Wohnort: Tirol

BeitragVerfasst am: Mo Jul 09, 2007 06:28 Antworten mit ZitatNach oben

Menu->Options->Connection->Show logfile. Since v1.6. To find out the temperature is a littlebit more complex cause the response is diffrent on some models.
Benutzer-Profile anzeigenPrivate Nachricht sendenE-Mail sendenICQ-Nummer
blackmarlincode



Anmeldedatum: 03.07.2007
Beiträge: 9

BeitragVerfasst am: Mo Jul 16, 2007 10:01 Antworten mit ZitatNach oben

How to syncronize phone time to the PC time??? I've read the list of all AT Command, but still i've got no idea how to make it... Question Question

Thx for help
Benutzer-Profile anzeigenPrivate Nachricht sendenYahoo Messenger
FJ
Site Admin


Anmeldedatum: 15.02.2006
Beiträge: 31467
Wohnort: Tirol

BeitragVerfasst am: Mo Jul 16, 2007 12:29 Antworten mit ZitatNach oben

Zitat:
Just take a look at the logfile of MyPhoneExplorer. You'll find everything there.


AT+CCLK
Benutzer-Profile anzeigenPrivate Nachricht sendenE-Mail sendenICQ-Nummer
Beiträge der letzten Zeit anzeigen:      
Neues Thema eröffnenNeue Antwort erstellen


 Gehe zu:   



Nächstes Thema anzeigen
Vorheriges Thema anzeigen
Du kannst keine Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum nicht antworten.
Du kannst deine Beiträge in diesem Forum nicht bearbeiten.
Du kannst deine Beiträge in diesem Forum nicht löschen.
Du kannst an Umfragen in diesem Forum nicht mitmachen.

Powered by phpBB © 2001, 2002 phpBB Group :: FI Theme :: Alle Zeiten sind GMT + 1 Stunde
Deutsche Übersetzung von phpBB.de