Tagged Questions
AT commands is a subset of the Hayes command set. They are mostly followed by dialup modems as specification of command-language.
6
votes
2answers
933 views
What is the best design for polling a modem for incoming data?
I have a GSM modem connected to my computer, i want to receive text messages sent to it using a python program i have written, am just wondering what is the best technique to poll for data.
Should i ...
5
votes
2answers
568 views
Schedule a job in Gearman for a specific date and time
From what I can see Gearman does not support scheduled jobs or delayed jobs. I was thinking that perhaps the scheduled job could be queued in at first and then added to the Gearman queue after the at ...
4
votes
1answer
802 views
How do I schedule one-time tasks from a Perl CGI application?
I am writing an application to allow users to schedule one-time long-running tasks from a web application (Linux/Apache/CGI::Application). To do this I use the the Schedule::At module which is the ...
3
votes
1answer
74 views
Sending AT commands from Powershell script to Android phone via adb
I have a little script that I run in adb shell of Android phone (/system/etc directory), which enables to communicate with the modem by sending/receiving a single AT command.
The script itself, if run ...
2
votes
1answer
188 views
At-Sign in SQL statement before column name
I have an INSERT statement in a PHP-file wherein at-signs (@) are occurring in front of the column name.
@field1,
@field2,
It is a MySQL database. What does the at-sign mean?
Edit:
There is no ...
2
votes
3answers
855 views
Sending AT Command to a USB-Connected GPRS Modem in C#
Can anyone give me a good direction or guide on how I can access a GPRS modem that is connected to a Usb Port. Should I make a USB driver for my program to send AT command to the modem? or Is like a ...
2
votes
1answer
88 views
Why do the outputs differ when I run this code using NetBeans 6.8 and Eclipse?
When I am running the following code using Eclipse and NetBeans 6.8. I want to see the available COM ports on my computer. When running in Eclipse it is returning me all available COM ports but when ...
2
votes
2answers
694 views
Why I am not able to receive sms using AT commands?
I want to send / receive sms using AT commands from my computer to my mobile phone. I connected my phone to my computer using a USB port. My computer detects the modem and I am able to send sms from ...
2
votes
3answers
215 views
1
vote
2answers
140 views
why GSM modem is not responding to program but responding to hyperterminal or docklight?
EDITED:
Im developing SMS application in java for reading SMS.Im sending AT commands to GSM mode for sending an SMS,messages is sending successfully ,but im not getting any response from the modem.If ...
1
vote
0answers
103 views
FXT-009 Wavecom GSM Modem access via Serial Port using Java
I am trying to access and send SMS through Wavecom's FXT-009 using Serial Port in Java. I have tried retrieving input and outstreams from the SerialPort object but when I write "AT" commands to the ...
1
vote
1answer
400 views
Sending SMS using AT commands via C#.Net
I am using AT commands to send text message via C#.net. How to send a long message i.e. message more than 16o chars ?
Thanks.
1
vote
2answers
369 views
PHP Commands to USB Modem
Please what is the AT commands in PHP compatible with Huawei USB Modem ?
i need to use these commands in script then i can send sms using the Huawei USB Modem.
thanks
1
vote
2answers
154 views
Ideas about web browser in Qt using GSM/GPRS modem
I have successfully interfacted Telit GL 865 GSM/GPRS modem to my Atmel microprocessor. My POC board is running embedded linux and I have also cross compiled Qt libraries(including Webkit) and ...
1
vote
1answer
256 views
Sending SMS using Python
I am trying to send sms using python and a GSM modem connected to my local machine, I have successfully sent the SMS using AT commands but now I have a technical problem for which I need help, the ...
1
vote
3answers
250 views
Using Linux 'at' to schedule jobs via C++
I have a C++ program that needs to schedule various future processes to kick off on a one-time-only basis.
The development is in Linux so the obvious choice is to use the 'at' command; I'm not ...
1
vote
5answers
585 views
How do I keep a Perl script running on Unix after I log off?
I have a script that takes a lot of time to complete.
Instead of waiting for it to finish, I'd rather just log out and retrieve it's output later on.
I've tried;
at -m -t 03030205 -f ...
1
vote
2answers
1k views
name instead of number to send sms using AT commands
Instead of the sender number to the recipient , i want it be name using the AT commands.
I am successfully send the message through AT commands using GSM Modem. Can somebody provide
the solution to ...
1
vote
2answers
606 views
How can I send an SMS via AT command with Zoom 7.2m Tri-Band USB Modem?
I am trying to make a simple python 2.6 application on OSX 10.6.6 that can send and receive SMS on my Zoom 7.2m (3g) USB Modem.
On initially plugging into the USB modem, no TTY or CU sessions seem to ...
1
vote
1answer
537 views
Building a Modem Control Software: the connection part
I have a 3G modem, and the accompanied "Mobile Partner" software really s*cks, and I want to make my own. Currently, I've found out the following:
Sending/Interpreting AT commands
Setting the ...
1
vote
1answer
751 views
How to send a future email using AT command
I just need to send one email into the future, so I figured i'd be best at using at rather than using cron. This is what I have so far, its messy and ugly and not that great at escaping:
<pre>
...
1
vote
1answer
91 views
at command strange behaviour
This is the first time i am playing with the at command in linux and notice something strange. Say i create this test file:
#!/bin/bash
count=1
echo "count is $count"
then i issue
at -f ...
1
vote
3answers
318 views
how to use at command to set python script execute at specifiecd time
when i try to use cron to execute my python script in a future time,i found there is a command at,AFAIK,the cron is for periodly execute,but what my scenario is only execute for once in specificed ...
1
vote
2answers
176 views
Implementing escape sequences for a serial devices
I have a serial device connected to a linux host. The host will be need to be able to process standard AT commands.
I need to include the standard AT '+++' escape sequence for a serial device..
...
1
vote
1answer
6k views
how to rename filename in sdcard with android application?
In my Android application, I want to rename the file name at runtime. How can I do it?
This is my code:
String[] command = {" mv", "sun moon.jpg"," sun_moon,jpg"};
try
{
Process process = ...
1
vote
3answers
3k views
list and kill at jobs unix
i have created a job with at command on solaris 10
it's working now but i want to kill it but i dont know how can i find job number and how to kill that job or process
any help ?
1
vote
1answer
1k views
AT command AT+CPMS=“SM”,“SM”,“MT”
I needed a clarification about the AT command AT+CPMS="SM","SM","MT"
Although this AT command work with most of the UEs,it however gives an error msg with the Nokia N72...
I tried the AT command ...
1
vote
1answer
1k views
When deleting SMS, they don't get deleted
I connected a GSM/GPRS-modem to my microcontroller and everything works fine.
When I want to delete all messages in the ME storage, I should use this command:
AT+CMGD=1,4
->OK
The deleteflag ...
0
votes
0answers
8 views
cron and at are not working [migrated]
On my Mac (yeah, yeah I know. but my Linux box is at work) for some reason cron and at don't want to work. They both register that jobs have been added, with no syntax errors or any qualms at all. ...
0
votes
0answers
18 views
minicom dialing out error [migrated]
I'm running minicom on Ubuntu 10.04 with a Huawei e220 and an AT&T SIM card. As directed by http://bit.ly/16ODGG, I was able to send an SMS to myself and several other phones across carriers.
...
0
votes
0answers
54 views
How to send sms using dio (Direct Input Output) in PHP? invalid port?
I have got one script which works well on COM1, but when I connect my mobile to pc through bluetooth... it connects on COM33.
Dio throws error
Invalid Port.....
any solution?
set_time_limit(0);
...
0
votes
1answer
29 views
AT Command to send Business Card (VCard)
I have developed my SMS solution using AT Commands. now i need to send Business Cards (VCards) using AT Command.
I have searched alot but can't find the command for the above.
Can anyone help me ...
0
votes
1answer
34 views
linux 'at' command like functionality for mysql database
I need to update a particular field in the database based on some timestamps in the same table. Now are there time based triggers which can be scripted to look at the value and do things? much like ...
0
votes
0answers
97 views
Execute linux AT Command via PHP
When I run this code via ssh echo wget http://domain.com/send_me_email.php | at 12:54 it ran correctly and sent me an email at that time.
Not if I run a PHP script like this
exec("echo wget ...
0
votes
1answer
80 views
3G modem receives multiple SMS intermittently
I developed a Java application, which through a 3G modem I get the SMS's received. The problem is that several users to send SMS to this same number (about 25, 30 users). I noticed that the receipt of ...
0
votes
1answer
298 views
Making Calls through Android phone via bluetooth enabled micro controller
my end goal is have a microcontroller with bluetooth make calls through any bluetooth enabled phone via bluetooth. I currently have an android phone and it would be great if i could place calls onto ...
0
votes
1answer
67 views
Unix `at` command via PHP
Here's my code to create a new at job...
system('echo \'php -f /path/to/my/php/file.php\' | at 1700');
I thought this would be simple and would just work but alas, nothing happens!
When I run echo ...
0
votes
1answer
45 views
GSM ACM8060 gives error when using AT cmds in terminal but works with a cell phone
I am using a GSM module ACM8060.
When I try to send SMS using AT commands it returns ERROR but when sms sent from a cell phone using the same SIM it sends successfully.
+CREG: 3
AT+CMGS="nnnnnnnnnn"
...
0
votes
3answers
111 views
“@/path/to/a/file” in PHP, what does it mean?
I have stumbled to following code example:
$image = 'file/path';
$code = $tmhOAuth->request('POST', 'https://upload.twitter.com/1/statuses/update_with_media.json',
array(
'media[]' => ...
0
votes
2answers
656 views
Internet through GPRS using telit GL 865 GSM/GPRS modem
I'm working on the Telit GL-865 GSM/GPRS Modem kit for research purposes. I have connected it to my pc using a serial port and got the terminal access using Putty.
I can successfully execute all AT ...
0
votes
2answers
115 views
Schedule some jobs with php/python at some specific time without crontab
I have some irregular jobs to do(frequent and many), so I can't use the crontab.
for example:
send an email at 10:20AM on July 22 2012
post a article at 11PM tonight
run a script at 9:50AM ...
0
votes
2answers
56 views
Cannot write arobase in a Button?
I just want to create a button ion Android that will link to my Twitter account:
<Button style="@style/HomeButton"
android:text="@waza_be" ...
0
votes
1answer
49 views
Gettind well-readable answer form modem (AT)
I'm Java programmer. I try to get answer from my dial-up modem Acorp. Send AT-commands and see, that modem work correctly. I read answer using InputStream and I get this: [B@127734f
What is it? Why ...
0
votes
1answer
26 views
How to define a Job ID when using the AT command
How is it possible to define the name / ID of a job whilst creating a task with the AT command?
0
votes
2answers
407 views
AT Commands PHP
I want to send messages from php by using a GSM modem. I have configured the modem and tested it using Hyperterminal. Now I want to execute AT commands using php. Is there any open source library ...
0
votes
1answer
420 views
Android Phone as a GSM Modem
I would like my android to work as a GSM Modem, or by any other means, specifically, to send sms through it using some programming language library. What could be the way to do it programmatically as ...
0
votes
4answers
447 views
Run a command at a specific time
Greeteings,
I'm trying to run a command at a specific time. I've looked at the "at" command, but I don't know how to get it working...
Here's what I do:
at 1843 (Enter)
php /run/this/script.php ...
0
votes
2answers
167 views
how to add a static layout to another static layout at run time
i am a new developer in android.i got problem with layouts in android.
i have used three layouts in main.xml as follows
main.xml
<LinearLayout android:layout_width="fill_parent"
...
0
votes
4answers
62 views
C# Lists item at location
I'm working on C# Lists and i need an item at list location x how do i do it? thanks for helping me
0
votes
0answers
367 views
Gprs communication between gprs modem connected to server and a gprs enabled device
I have a gprs enabled device and a gprs modem, which is connected to a server. I need to code the device in java using AT commands to send sms (messages) to the gprs modem after a certain period of ...