The Following User Says Thank You to qspb For This Useful Post: | ||
|
2012-10-02
, 08:37
|
|
Posts: 411 |
Thanked: 1,105 times |
Joined on Jan 2010
@ Europe
|
#2
|
Hello.
My aim is to write simple perl script which will show cell id, LAC and signal strength (dBm). I'm going to run it on my Nokia N9. But I don't know how to get this parameters from MeeGo Harmattan API's. Does anyone know how to get them? Should I call some Dbus method?
Thanks in advance.
#turn off GSM Radio (needed reregistration for cellid) dbus-send --system --type=method_call --dest=com.nokia.phone.SSC /com/nokia/phone/SSC com.nokia.phone.SSC.set_radio boolean:false dbus-monitor --system > dbus.txt & #turn on GSM Radio (needed reregistration for cellid) dbus-send --system --type=method_call --dest=com.nokia.phone.SSC /com/nokia/phone/SSC com.nokia.phone.SSC.set_radio boolean:true sleep 10; ps -ef | grep "dbus-monitor" | grep -v grep | awk '{print $1}' | xargs kill -9
|
2012-10-07
, 14:29
|
|
Posts: 411 |
Thanked: 1,105 times |
Joined on Jan 2010
@ Europe
|
#3
|
Hello BluesLee
Thank you for your reply. I understood the way I can get Cell ID, but it's seems to be not applicable, because it interrupts GSM connection, and I just want to get current Cell ID just like "CellTrack" program does it on Nokia 5800.
The Following User Says Thank You to BluesLee For This Useful Post: | ||
|
2013-09-27
, 05:40
|
|
Posts: 306 |
Thanked: 582 times |
Joined on Mar 2012
|
#4
|
Recently I created an application "MeeCell" (cellular net monitor for Harmattan) which can be downloaded from http://qspb.net/meecell.
Unfortunately, I can't publish it in OVI store. Maybe, I need to tell about this app in "Software" forum?
The Following User Says Thank You to ginggs For This Useful Post: | ||
|
2013-09-27
, 19:21
|
|
Posts: 306 |
Thanked: 582 times |
Joined on Mar 2012
|
#5
|
I am very grateful to you for your remark. This is because I've also managed to solve the problem with displaying correct "network type" value. And the solution is based on RNC ID. So, I'm very pleased.
You can already download the corrected version of the application ( http://qspb.net/meecell ).
Tags |
harmattan, nokia n9 |
|
Last edited by qspb; 2022-08-02 at 23:48. Reason: Solution was found.