Questions tagged [at-command]

AT Commands are text commands for communicating with a modem. Historically also called Hayes Command Set. For questions about the `at` command line tool use the tag [at-utility].

The most important, general specification covering AT commands is the ITU specification V.250 (formerly known as V.25ter). AT commands related to mobile phones are standardized by 3GPP in 27.007 (with some commands specified in 27.005). Historically, early AT commands were developed by modem manufacturer Hayes.

An AT command can be one of two fundamental types, action command or parameter command. This is important to distinguish because valid syntax for such commands is different (although specifications unfortunately sometimes mess up here).

Responses from the modem can be of three fundamental types:

Final result code

  • Indicates that the execution of the currently running AT command is finished. Examples: OK and ERROR.

Intermediate result code or Information text

  • Responses related to a command that comes before the final result code. Examples: CONNECT and +CPBR.

Unsolicited result code

  • Responses that the modem issues independently of any running AT command as response to certain events (in the modem). Examples: RING and +CREG.

References

1408 questions
0
votes
0 answers

vb2008 SMS Sent starts on 2nd line not on its first line

I am having some problems with my on going project. I am using vb2008 to send SMS using AT+Commands. So here is the code Dim sender_port As New System.IO.Ports.SerialPort() Private Sub btn_sender_Click(ByVal sender As System.Object, ByVal e As…
0
votes
0 answers

AT command for temperature

I am trying to connect a device over RS232 and communicate using AT commands, my understanding is that for example when dialling a number, I would use AT(make sure the device is ready to listen)D(dial command)037455773(example number). The device to…
Ed Prince
  • 714
  • 2
  • 14
  • 31
0
votes
2 answers

not receiving '>' after using at+cmgs

I am using SIM900 GSM module connect to my AVR microcontroller.My compiler is Code Vision AVR. I want to send a message and I don’t want to use delay.I use an usart rx interrupt. I want to receive '>' in rx interrupt after sending number.Then send…
0
votes
1 answer

How to send/get request/response with obd2 ELM327 adapter for Android?

I am working on an android application which has to connect to OBD II ELM327 device via Bluetooth and has to get data(rpm, speed.. etc) from car.. Able to connect via bluetooth but Not sure how to write a code for communication ... Can anyone help…
user3832506
  • 93
  • 2
  • 4
0
votes
2 answers

How to trigger a Line break on a SMS

I'm gonna write SMS service that sends SMS's automatically.In that case i am going to create my SMS content by SQL. So is it possible to add a line break by using some special command or a character?
Ranga
  • 258
  • 2
  • 13
0
votes
1 answer

How to send multiple mobile # in vb6 using AT command

hi guys i develop an application in vb6.0 sending to mobile # is fine but when i try to send two or more mobile # it will only send to the first # and the other is none. here is my code please take a look. MSComm1.Output = "AT" & vbCrLf …
Denver Bomb
  • 13
  • 1
  • 5
0
votes
0 answers

How to get AT Command Response?

I am developing a SIM Toolkit application using C#. I use the following code to get the response. But it shows me unformatted text which is not readable. This USSD code should display "Your Current balance is 100.00". private void…
Drop Shadow
  • 845
  • 3
  • 12
  • 28
0
votes
1 answer

Need to capture response from Huawei E153 modem in PHP

I'm working with a project to send SMS with Huawei E153 dongle with PHP.But my code is not working with this modem.(It's working with my Samsung mobile phone).To order to solve this problem I need to check respond from modem.Please help.Here is my…
0
votes
0 answers

Is there a way to display incoming SMS messages in C#?

I have a little windows form App which I'm using to send texts out to Customers using AT Commands, However we need a way to see the texts the customers will be sending back to us, I've already attempted to read data from the virtual Serial port I'm…
Captain_Custard
  • 1,308
  • 6
  • 21
  • 35
0
votes
1 answer

SMS forward immediately to pc by ZTE GSM modem

I want to read message using a ZTE GSM modem. But I want when Modem get new message just forward it to PC. How should I implement this I read +CNMI AT command but could not get it.
0
votes
1 answer

GSM DATA INTERCHANGE

I was wondering if it is possible to send via GSM protocol and appropriate AT commands, few data through a simple GSM call (witout using data traffic). For example my system is a PIC + GSM Module and it monitors and processes a string of data. When…
divivoma
  • 13
  • 4
0
votes
1 answer

Send SMS via PHP fwrite function in Linux

$filename = "/dev/ttyUSB4"; if (!$handle = fopen($filename, 'r+')) { echo "The device isn't detected"; exit; } else { if (fwrite($handle,"AT+CMGF=1\r")) { …
0
votes
0 answers

Substring Respond from GPRS Arduino AT Command

I'm using Module sim 900 (V.1), When I write "AT+CCLK?" there have a respond is ; "2014/04/11 ; 07:02:08 +28" and then I just want to take "07:02:28" only for write this to sd card.. Anyone here can help me take these one ? void loop() { …
0
votes
0 answers

reading text message through matlab using AT commands and bluetooth

I want to read text message using Matlab as hyperterminal using AT commands and bluetooth as connection medium since I am new in it could somebody suggest that how can I do it. I am using nokia c2-03 for sending the message but if you suggest any…
user3472271
  • 11
  • 1
  • 3