Notices


Reply
Thread Tools
Posts: 11 | Thanked: 1 time | Joined on Sep 2010
#351
Originally Posted by dragly View Post
The new version worked flawlessly. I did a full purge and removed all setting files to test it.

Nope, I'm in Norway. I think it could have something to with the DBus as I had the exact same problem when I was trying to create an application in Qt which listened for incoming SMS messages using Qt Mobility. Asking in the Nokia Forums didn't result in any replies on the issue.

The strange thing, though, is that I flashed the device yesterday. So if DBus is the case, I must have reinstalled an application or reverted some config files which have messed up DBus again.

I would really like to help debugging this. It annoys me that I can't figure out what's wrong and I don't know where to look. And I would love to have SMSCON up and running

Originally Posted by Saturn
It might be the operator that sends the message in a specific way or an application that interferes with the dbus signal.
I'm from inside Europe as well (Germany) using o2. On the weekend i will try to get my hands on another operator's SIMcard (Vodafone or TMobile) for my n900 to check whether it is an operator problem (i guess that it isn't - but i'll report back).
I would also like to help troubleshooting this, since i'd love to use this app and it looks like more people are (starting) to have the same problem.
Maybe someone could tell which "(non)standard" applications or which type of applications make use of the DBus, so i/we could check whether the problem is somehow related to a certain app that the people, where SMSCON doesn't work, have installed. ...just and idea...
 
Posts: 29 | Thanked: 0 times | Joined on Oct 2010 @ Sweden
#352
Is this a bug or WHAT?!

A workmate to me send me a sms with "coffee" and my phone reply back with this to his cellphone:

-Keyboad-
Phone is being used:
keyboard is open.

Why the heck did my phone send SMSCON status to his phone? Tried with my own phone and send a similiar sms to my phone and got the same respons =/

Cheers
Pontus
 
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#353
Originally Posted by jakiman View Post
What an awesome app. I have just one question:

Can you change the specified mobile number via SMS also?
Coz what happens the specified phone number isn't available at the time?


I would like to be able to remotely change the phone number that it contacts for call&sms by sending it some specific sms with the number.

Such as:

ChangeNumber +XXXXXXXXX

Is this possible?
If you use another phone number (different to initially stored number in user settings) to send the SMS command with, SMSCON always sends the reply to the phone you used to send the command with.
And then the new phone number is stored in the user settings.

But:

Only if SMSCON has never been activated and SIM card has been changed it uses the phone number you stored in the user settings file.
 

The Following User Says Thank You to digitalvoid For This Useful Post:
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#354
Originally Posted by PontusOhman View Post
Is this a bug or WHAT?!

A workmate to me send me a sms with "coffee" and my phone reply back with this to his cellphone:

-Keyboad-
Phone is being used:
keyboard is open.

Why the heck did my phone send SMSCON status to his phone? Tried with my own phone and send a similiar sms to my phone and got the same respons =/

Cheers
Pontus
The only possible reason I can think of SMSCON is doing this is because SMSCON was activated earlier in time. Maybe you used your workmates phone to activate it (his number in then stored in the user settings file)?

And your workmate send you later a SMS message ("coffee") and you opened your keyboard to respond and SMSCON detected this and send the reply ("keyboerd is open") to your workmate...
 
Posts: 29 | Thanked: 0 times | Joined on Oct 2010 @ Sweden
#355
Originally Posted by digitalvoid View Post
The only possible reason I can think of SMSCON is doing this is because SMSCON was activated earlier in time. Maybe you used your workmates phone to activate it (his number in then stored in the user settings file)?

And your workmate send you later a SMS message ("coffee") and you opened your keyboard to respond and SMSCON detected this and send the reply ("keyboerd is open") to your workmate...
The SMSCON was activated earlier, but not with his phonenumber. He only send me a SMS with "Coffee" because he was on the other end of the building, and then he asked me what the heck I send to him

The version of the SMSCON Ediditor is 0.5.5 but I will purge it now and update it to the newer version =)
 
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#356
Originally Posted by PontusOhman View Post
The SMSCON was activated earlier, but not with his phonenumber. He only send me a SMS with "Coffee" because he was on the other end of the building, and then he asked me what the heck I send to him

The version of the SMSCON Ediditor is 0.5.5 but I will purge it now and update it to the newer version =)
Interesting case, I think I know why this is happening (so it might indeed be a bug!)

Could you change this in the /opt/smscon/smscon_daemon script:

Code:
def KEYBOARDslider(Action, Type):
    """
    Check state change of keyboard slider.
    """

    if EnableKeyboardDetect == True:
        # keyboard slider: 'open to closed' state or 'closed to open' state
        KeyState = os.popen('cat /sys/devices/platform/gpio-switch/slide/state').read().strip('\n') 
        if KeyState == 'closed' or KeyState == 'open':
            SMSsend(SenderNumber,
                    'NOKIA N900\n' + \
                    '%s\n' % GetTime() + \
                    '-Keyboard-\n' + \
                    'Phone is being used:\n' + \
                    'keyboard is %s.' % KeyState,
                    'send SMS message keyboardslider used to')
Change SenderNumber to SENDERNUMBER.

When SMSCON is activated (by a valid SMS command) and option KEYBOARDDETECT = 'yes' and another SMS is send (without a valid SMS command), the keyboard detect function uses the number from the latest SMS. (I think, not fully sure)
 
Posts: 29 | Thanked: 0 times | Joined on Oct 2010 @ Sweden
#357
Will reply back if it occur again

But, how to change the password from 12345 on the new release to my own password?

Cheers
Pontus
 
Posts: 214 | Thanked: 140 times | Joined on Aug 2010
#358
Could SMSCon do something to try to boost the lightin of the front camera? E.g. try something similar to this command:

Code:
gst-launch v4l2src device=/dev/video1 ! ffmpegcolorspace ! videobalance brightness=0.3 contrast=2 ! autovideosink
/Z
 
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#359
Originally Posted by MasterZap View Post
Could SMSCon do something to try to boost the lightin of the front camera? E.g. try something similar to this command:

Code:
gst-launch v4l2src device=/dev/video1 ! ffmpegcolorspace ! videobalance brightness=0.3 contrast=2 ! autovideosink
/Z
Tried it already, videobalance only works for video recording.
 
Saturn's Avatar
Posts: 1,648 | Thanked: 2,122 times | Joined on Mar 2007 @ UNKLE's Never Never Land
#360
Originally Posted by PontusOhman View Post
Will reply back if it occur again

But, how to change the password from 12345 on the new release to my own password?

Cheers
Pontus
Hi,

After opening the editor pressing on the top (where it writes "SMSCON Configuration" will give you a drop-down menu. There you'll find the option "Change Password"

Maybe tomorrow, I will add some screenshots in the wiki.

Cheers.
 
Reply


 
Forum Jump


All times are GMT. The time now is 20:31.