send message of multiple pages using AT commands from mobile via PC

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
Hi ,
I wanted to know that how i can send messages of multiple pages from mobile using AT commands via PC. Im able to send message of single page using AT command but how i can send multiple pages. Following is the code of single page message :
<span style="white-space:pre port.Open();<br/>
port.Write("ATrn");<br/>
System.Threading.Thread.Sleep(300);<br/>
port.Write("AT+CMGF=1rn");<br/>
System.Threading.Thread.Sleep(300);<br/>
port.Write("AT+CMGS=" + number + "rn");<br/>
System.Threading.Thread.Sleep(300);<br/>
port.Write(message + (char)(26));<br/>
return port.ReadExisting();


View the full article
 
Back
Top