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
3 answers

adding textboxes at runtime in asp.net

i need to create textboxes dynamically as user specifies the no..actually there are two textboxes in a row..user specifies no of rows needed.. as specified textboxes(two per row) should be added to the form and also i need to read the text entered…
anay
  • 135
  • 2
  • 7
  • 16
0
votes
0 answers

call status in at command

I am able to dial a gsm modem with at command "atd". But failed to detect the status (i.e. whether the dialed number is ringing or something else). Here is my code- code for dialing- ModemPort.WriteLine("atd" + number + ";\r\n"); Code for getting…
s.k.paul
  • 7,099
  • 28
  • 93
  • 168
0
votes
2 answers

Recieveing SMS via GSM modem in C#

I am working on a project in which I have to send and recieve SMS via GSM modem in C# using AT commands. I am done with the sending part but having trouble reading sms from the sim card. I have tried the following code and get the following…
Mavrik
  • 1
  • 2
0
votes
0 answers

How to run AT command by programming in android.?

I'm new with AT commands! Any one please help! I want to get Network related information which is not available in Android Software Developer Kit. Please also tell me where the collection of this commands are available for android phones?
Ahmed
  • 98
  • 2
  • 10
0
votes
1 answer

Sending SMS from Website

I want to know is it possible to send SMS text from my website to GSM modem in my local mechine using AT Command when my webserver and my computer basically two different mechines? I hope someone can give me some explaination of best practice to…
ani
  • 543
  • 2
  • 5
  • 14
0
votes
0 answers

Send and Read SMS through a GSM Modem using AT Commands from Websites

I working on a website which have function for sending SMS messages. What i know is the GSM modem use AT COMMAND to send/receive the message. I already have the modem but i can't find a way to sending the AT COMMAND from php script to the modem. Can…
ani
  • 543
  • 2
  • 5
  • 14
0
votes
1 answer

I only get AT as feedback?

I am trying to connect with the SIM5215 chip trough the Cooking-hacks 3g Gprs board. http://www.cooking-hacks.com/3g-gprs-shield-for-arduino-3g-gps The connection with the chip is working fine. For example when in the serial monitor I use the…
0
votes
1 answer

Reading SMS Through HSDPA Modem with At Commands

I am trying to Read SMS through HSDPA Modem. I Tried AT+CMGR=1 AT+CMGR=123 AT+CMGR="ALL' AT+CMGR="REC ALL" AT+CMGL="ALL" Commands but No Sucess. Is Any problem with serialport configuration or something else Any other possible solution please…
Rohan
  • 157
  • 1
  • 15
0
votes
0 answers

How can send a SMS to many phone at a time?

I have a user phone list. It is just a array type. For example, $phone = array('13100998888', '13188888000'); Then I am trying to send a text to 2 phone at a time. include "php_serial.class.php"; $serial = new phpSerial; …
engel0088
  • 203
  • 3
  • 12
0
votes
3 answers

Send SMS via Nokia Mobile Using AT Commands

I'm trying to send sms with my Nokia cell phone (C1-01) using AT Commands and I can successfully send SMS with this vb.net code. Button_Send_Click: Dim SMSPort = New SerialPort With SMSPort .PortName = "COM2" .BaudRate = 9600 …
Muhammad Saqib
  • 2,185
  • 3
  • 35
  • 48
0
votes
2 answers

Send ATcommand from sim-card to modem(gsm) controller

My apologize if the question is not correct, I'm novice in this topic. I know that AT commands are send to controller of modem by (via) com port. My question: Are there modems that can send a AT commands to the modem controller from sim card? And…
brucemax
  • 754
  • 8
  • 15
0
votes
1 answer

Arduino: AT Commands - Read the last line of the serial output using Serial.read()

I constantly pass AT commands to get GSM Signal Strength My code copies the entire serial output Kindly advise how to read the latest serial output (last line) find the output below, in which i need to assign the output from last line (21,0) to the…
Jay Chang
  • 1
  • 1
  • 3
0
votes
2 answers

How to send AT-command from any microcontroller to telegesis zigbee?

all I want to send an AT-command from any microcontroller to zigbee module "telegesis", but I don't know what is the bit representation of the AT-command to be send from the serial port of the microcontroller to zigbee module. please any answer…
sara
  • 256
  • 1
  • 3
  • 15
0
votes
1 answer

At command Communication between Verifone Nurit8320 and siemens MC55 external modem

I am communicating with a server from Verifone Nurit8320(DTE) via siemens MC55 gsm modem(DCE). I am passing AT commands via UART to give commands to siemens MC55 gsm modem (DCE). I have given a delay of 100 ms (required) between every AT command and…
user
  • 2,694
  • 6
  • 24
  • 25
0
votes
2 answers

Library to send SMS messages via IP connected device

I'm looking for a library (win32) to be used in a Delphi project that will enable me to send and receive SMS (text messages) via GSM modem devices connected via Ethernet (listening on an IP address). All the libraries I found until now support…
Koen
  • 29
  • 2