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
-2
votes
1 answer

AT commands to send an SMS message over a CDMA Verizon phone

I am trying to send an SMS command from a desktop application using a Samsung Galaxy s5 CDMA phone from Verizon. I have tried using the GSM commands (AT+CMGS,etc) but I get an CMS:500 error. Does anyone know if there are any other commands that…
Gary
  • 1
  • 1
-2
votes
1 answer

How to send sms to mobile station through hex values?

I need to send sms using hex values. I have some SMS pdu which i convert it to heximal. Now i need to send this heximal value to check the message. Anybody any idea how to do it? Thanks.
Gazal
  • 184
  • 1
  • 18
-2
votes
1 answer

ESP8266 WiFi signal strength

how to use AT+CWLAP in esp8266 to get wifi signal strength? I want to get the signal strength which is displayed on the serial monitor and use it in my code in arduino IDE!
-2
votes
1 answer

Use AT command in shell script

I'm using gsm modem to send sms, via a terminal there's no problem but i want to write a shell script (called by php) and i want to know how insert AT command in. Example : call the script.sh the script open minicom (sudo..) type : AT+CMGS="num"…
-2
votes
1 answer

Sending SMS PDU mode error

I tried to send sms using below command. SmsCom.ExecCommand("AT+CMGS=4207915892000000F001000B915892214365F7000021493A283D0795C3F33C88FE06CDCB6E32885EC6D341EDF27C1E3E97E72E" + char.ConvertFromUtf32(26), 300, "Messagenot sent " + Portname +…
Saw Al Gor
  • 91
  • 7
-2
votes
1 answer

ZTE 3g modem connection issue

TRied connecting to the internet with ZTE 3g modem (tatadocomo3g) DId a gprs attach - AT+CGATT+1 got an OK Set PDPD context using - AT+CGDCONT=1,"IP","tatadocomo3g","0.0.0.0",0,0 - got an OK ACtivate pdp context 1 using AT+CGACT=1,1 . got OK for the…
ramesh
  • 3
  • 3
-2
votes
1 answer

using AT commands. of service in response encoding and read Chinese or Arabic for Nokia phones

I am developing an application for GSM Modems using AT commands. I have a problem reading Unicode messages or ussd example: that dcs=17 not 7 or 15 or 72 Two years ago, and I'm looking for a solution to no availI was able to find a partial…
abolamar
  • 1
  • 1
  • 2
-2
votes
2 answers

how to send sms via a dual sim mobile using serial port

I am sending sms to recipients using following code private void button1_Click(object sender, EventArgs e) { var com5 = new SerialPort("COM5"); if (!com5.IsOpen) com5.Open(); com5.WriteLine("AT" + Environment.NewLine); …
kashif
  • 3,713
  • 8
  • 32
  • 47
-3
votes
1 answer

Understanding AT commands?

I paired a phone to an android device , but there is a problem in the response of some AT commands: """ I get an incoming call to the paired phone then i executed random commands" AT+BLDN AT+CLCC AT+CMOD I have read some informations about the AT…
-3
votes
1 answer

Reset A6 GPRS module wirelessly

In A6 GPRS module I read this sentence: Can use SMS to config module What does it means exactly? Can I set my module setting with AT commands through SMS? That's why I ask because I need reset my Arduino board in wireless (not access to internet,…
-3
votes
1 answer

How to parse string from Serial monitor in Arduino?

My code: void setup() { Serial.begin(9600); Serial1.begin(9600); } void loop() { Serial1.write("AT+DTTX\n"); delay(5000); while (Serial1.available()) { String txtMsg = Serial1.readString(); Serial.println(txtMsg); } } Serial…
Link
  • 89
  • 2
  • 9
-3
votes
1 answer

Why do the outputs differ when I run this code using NetBeans 6.8 and Eclipse?

Possible Duplicate: 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…
Manish Basdeo
  • 6,139
  • 22
  • 68
  • 102
-4
votes
1 answer

How to stream on the Web the voice output of a call when dialing using AT command

I want to run a live streaming audio website of the call received when I dial the AT command. How do I do the sound transmission from the terminal to the website?
1 2 3
93
94