Tag: at command

无法通过使用gsm调制解调器的System.IO.Ports通过C#代码发送短信

一个button,当点击,发送一个短信到在NumTxt文本框中input的号码,并发送SMSTxt文本框中input的文本。 在texbox ComPort中input的端口名称这是button单击事件的事件处理程序。 using System.IO.Ports; private void button1_Click(object sender, EventArgs e) { try { int mSpeed = 1; serialport.PortName = ComPort.Text; serialport.BaudRate = 96000; serialport.Parity = Parity.None; serialport.DataBits = 8; serialport.StopBits = StopBits.One; serialport.Handshake = Handshake.XOnXOff; serialport.DtrEnable = true; serialport.RtsEnable = true; serialport.NewLine = Environment.NewLine; Console.WriteLine("1a"); try { serialport.Open(); } catch (Exception) { MessageBox.Show("Try another […]

GSM SM5100B CMEERROR:4错误

我正在使用Arduino来控制一个SM5100B GSM设备,除了当我想在收到另一个短信时发送短信。 我得到这个, 错误代码: OK> + CMGS:2 5 OK + CMEERROR:4 我处理上述收到的短信的代码: #include <SoftwareSerial.h> //Include the NewSoftSerial library to send serial commands to the cellular module. char inchar; //Will hold the incoming character from the Serial Port. SoftwareSerial cell(2,3); char mobilenumber[] = "0597010129"; void setup() { //GSM Serial.begin(9600); // opens serial port, sets data rate […]