|
#11
|
|||
|
|||
|
well, it's the ONLY way for me to check how much money i have left on sim.
|
|
#12
|
||||
|
||||
|
Hello, I've just received my N900 from amazon... it's an german one but it doesn't matters
![]() the trouble is that I can't make special calls, i mean like viewing what's my credit... like quickly calling #123# it simply doesn't work, the phone doesn't want to try to call it 0__0 someone in the same situation here ? thx btw i'm french so sorry for my english ^^ |
|
#13
|
||||
|
|
||||
|
Known bug, it will be fixed with
Last edited by pH5; 2009-12-29 at 14:36. |
| The Following 3 Users Say Thank You to pH5 For This Useful Post: | ||
|
#14
|
|||
|
|||
|
Quote:
Please also note that the more generic case has been fixed in the meantime, but apparently won't be available in the upcoming firmware update, but probably in the next one. more details: https://bugs.maemo.org/show_bug.cgi?id=5357#c76 |
| The Following 3 Users Say Thank You to lorelei For This Useful Post: | ||
|
#15
|
|||
|
|||
|
Threads merged.
|
|
#16
|
|||
|
|||
|
.. and it appears my post (reply to lorelei's post) disappeared in the merge?
__________________
N800/OS2007|N900/Maemo5 -- Metalayer-crawler delenda est. -- Current state: Fed up with everything MeeGo. |
|
#17
|
|||
|
|||
|
Hey guys!
Like somebody told in the bug report there is a tricky way to send USSD codes. I tried it on my device and it worked. ![]() So here is how I did it:
In T-Mobile Germany the USSD code *135# simply shows your number. Hope this helps! ![]() It is not really comfortable but at least there is a way to send some USSD codes until the bug is fixed. |
| The Following 20 Users Say Thank You to stefbeer For This Useful Post: | ||
|
#18
|
|||
|
|||
|
I had the same problem, i was trying to dial *900# to check my credit balance (operator option), my N900 did not recognize the number and a notification "incorrect number " appeared. However, by removing the "#" symbol at the end of the number, everything worked. Don't know if this will work with you but give it a try
|
|
#19
|
|||
|
|||
|
Now we need a widget, that would show current balance.
|
|
#20
|
|||
|
|||
|
This script is intended to be run from root. It prints current balance on russia MTS operator.
Code:
#/usr/bin/python
import pexpect
import time
from subprocess import *
child = pexpect.spawn('pnatd');
child.send('at\r');
time.sleep(0.25);
child.send('at+cusd=1,"*100#",15\r');
time.sleep(0.25);
child.readline();
child.readline();
child.readline();
reply = child.readline();
start = reply.find('"');
end = reply.find('"', start+1);
reply = reply[start+1:end];
child.sendeof();
p = Popen(['sh', 'ucsdecode.sh', reply], stdout=PIPE);
print p.communicate()[0];
ucsdecode.sh Code:
#/bin/sh echo "$1" | echo -n -e $(tr -d '[:space:]' | sed 's/../\\x&/g') | iconv -f UCS-2BE -t UTF8 |
![]() |
| Tags |
| dial, dialing, lack of phone features, lack of quality control, sms, telephony, ussd |
|
|