SIM900 & WCDMA Series Modules_ Application 1.02

Size: px
Start display at page:

Download "SIM900 & WCDMA Series Modules_ Application 1.02"

Transcription

1 SIM900 & WCDMA Series Modules_ Application 1.02

2 Contents 1 SIM900 Series Modules SMS Application Logs Send English Short Message in Text mode... 4 Send Chinese Message 你好 In PDU Mode SIM900 Series Modules MMS Application Log... 5 SIM900 TCP/IP Application Logs Single Connection TCP Client In Non-transparent Mode... 8 Single Connection UDP Client In Non-transparent Mode... 9 Single Connection TCP Server In Non-transparent Mode Single Connection TCP Client In Transparent Mode...11 Single Connection UDP Client In Transparent Mode Multi Connection In Non-transparent Mode SIM900 Series Modules FTP Application Logs FTP GET METHOD FTP PUT METHOD How to get the FTP file size and delete the FTP file How to list the FTP files, create and delete the folder SIM900 Series Modules HTTP Application Logs HTTP GET METHOD HTTP POST METHOD HTTP HEAD METHOD Hypertext Transfer Protocol Secure (HTTPS) SIM900 Series Modules Application Log (Send an with an attachment) SIM900 Series Modules DDET Application Log SIM900 Series Modules Jamming detection Application Log SIM900 Series Modules GSM location Application Log SIM900 Series Modules Net Scan Application Log SIM900 Series Modules FOTA Application Log SIM900 Series Modules TTS (Text To Speech) Application Log Play synthetic speech locally by UCS2 coding text Play synthetic speech remotely by ASIIC coding text Stop playing synthetic speech SIM900 Series Modules SMS Auto run Application Log (do some remote configuration of the SIM900 module by sending AT commands over SMS) WCDMA Series Modules MMS Application Logs MMS Send MMS Receive WCDMA Series Modules TCP Application Logs TCP Client UDP Client TCP Client (transparent mode) Multi-Sockets SIM900 & WCDMA Series Modules_ Application

3 16 WCDMA Series Modules FTP Application Logs FTP PUT FTP GET WCDMA Series Modules HTTP Application Logs HTTP GET HTTP POST WCDMA Series Modules Application Logs SMTP :(Simple Mail Transfer Protocol) POP3 :(Post Office Protocol-Version3) SIM900 & WCDMA Series Modules_ Application

4 1 SIM900 Series Modules SMS Application Logs 1.1 Send English Short Message in Text mode AT AT+CPIN? +CPIN: SIM PIN AT+CPIN=1234 //Enter the pin number of SIM card AT+CREG? +CREG: 0,2 AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 31,0 AT+CMGF? +CMGF: 0 AT+CMGF=1 //Set Text mode AT+CSCS="GSM" //Select character set to GSM AT+CSCA? //Check service centre address +CSCA: " ",145 SIM900 & WCDMA Series Modules_ Application

5 AT+CSMP? +CSMP: 17,167,0,0 AT+CSMP=17,167,0,241 //Set SMS Text mode parameters AT+CMGS=" " //Send SMS message to > HELLO SIMCOM +CMGS: Send Chinese Message 你好 In PDU Mode AT+CMGF=0 //Set PDU mode AT+CSCS="UCS2" //Select character set to UCS2 AT+CSCA? //Check service centre address +CSCA: "002B ",145 AT+CMGS=019 //Send SMS > D F F60597D +CMGS: 20 PS: For the detail, please help to refer AN_SMS_V SIM900 Series Modules MMS Application Log Call Ready AT SIM900 & WCDMA Series Modules_ Application

6 AT+CPIN? +CPIN: READY AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 28,0 AT+CGATT? //Check GPRS service attached or not +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+CMMSINIT //Initialize MMS function AT+CMMSCURL="mmsc.monternet.com" //Set the URL of MMS centre AT+CMMSCID=1 //Set the network parameter for MMS AT+CMMSPROTO=" ",80 //Set the protocol parameter and MMS proxy AT+CMMSSENDCFG=6,3,0,0,2,4 //Set the parameters for sending MMS AT+SAPBR=3,1,"Contype","GPRS" //Set bearer parameters AT+SAPBR=3,1,"APN","CMWAP" AT+SAPBR=1,1 //Activate bearer context AT+SAPBR=2,1 SIM900 & WCDMA Series Modules_ Application

7 +SAPBR: 1,1," " AT+CMMSEDIT=1 //Enter edit mode to edit MMS AT+CMMSDOWN="PIC",28521,20000,"Beauty.jpg" //Download image CONNECT AT+CMMSRECP=" " // CONNECT means ready to download //Add the recipient AT+CMMSSEND //Send MMS PS: For the detail, please help to refer SIM900_MMS_AT Command Manual_V SIM900 TCP/IP Application Logs SW Architecture SIM900 series modules have 2 modes of TCP/IP applications: Single connection (AT+CIPMUX=0) Multi connection (AT+CIPMUX=1) In single connection mode, SIM900 can work as TCP server and TCP/UDP client in both Non-transparent mode (AT+CIPMODE=0) and transparent mode (AT+CIPMODE=1). In multi connection mode, SIM900 can work as TCP server and TCP/UDP client only in Non-transparent mode. Total 8 TCP/UDP connections can be set up in this mode: 8 clients or 1 server with 7 clients SIM900 & WCDMA Series Modules_ Application

8 3.1 Single Connection TCP Client In Non-transparent Mode AT AT+CPIN? +CPIN: READY AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 30,0 AT+CGATT? //Check GPRS service attached or not +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+CIPMODE? //Check TCPIP application mode +CIPMODE: 0 AT+CIPMUX=0 //Set the single connection mode AT+CSTT= CMNET,, //Start task and set APN, User Name and Password. Please ask your local GSM provider to get the APN. AT+CIICR //Bring up wireless connections with GPRS AT+CIFSR //Get local IP address AT+CIPSTART="TCP"," ","7806" //Start up TCP connection SIM900 & WCDMA Series Modules_ Application

9 CONNECT AT+CIPSEND //Send data > HELLO SEND AT+CIPSHUT //Deactivate GPRS PDP context SHUT 3.2 Single Connection UDP Client In Non-transparent Mode AT AT+CPIN? +CPIN: READY AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 30,0 AT+CGATT? //Check GPRS attached or not +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+CIPMODE? //Check TCPIP application mode +CIPMODE: 0 AT+CIPMUX=0 //Set the single connection mode AT+CSTT= CMNET,, //Start task and set APN, User Name and Password. Please ask your local GSM provider to get the APN. SIM900 & WCDMA Series Modules_ Application

10 AT+CIICR //Bring up wireless connection with GPRS AT+CIFSR //Get local IP address AT+CIPSTART="UDP"," ","7806" //Start up UDP connection CONNECT AT+CIPSEND //Send data to remote server > HELLO SEND AT+CIPSHUT //Deactivate GPRS PDP context SHUT 3.3 Single Connection TCP Server In Non-transparent Mode AT AT+CPIN? +CPIN: READY AT+CREG? +CREG: 0,1 AT+CSQ +CSQ: 31,0 AT+CGATT? +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 SIM900 & WCDMA Series Modules_ Application

11 AT+CIPMUX=0 AT+CIPMODE=0 AT+CIPSERVER=1,1234 SERVER AT+CIFSR AT+CIPSTATUS STATE: SERVER LISTENING REMOTE IP: hello server AT+CIPSEND hello client SEND AT+CIPSERVER=0 SERVER CLOSE hello sim900 AT+CIPCLOSE CLOSE 3.4 Single Connection TCP Client In Transparent Mode AT AT+CPIN? +CPIN: READY AT+CREG? +CREG: 0,1 SIM900 & WCDMA Series Modules_ Application

12 AT+CSQ +CSQ: 31,0 AT+CGATT? +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+CIPMUX=0 AT+CIPMODE=1 AT+CSTT= CMNET,, //Start task and set APN, User Name and Password. Please ask your local GSM provider to get the APN. AT+CIICR AT+CIFSR AT+CIPSTART="TCP"," ","7806" CONNECT Hello ATO CONNECT AT+CIPSHUT SHUT 3.5 Single Connection UDP Client In Transparent Mode AT SIM900 & WCDMA Series Modules_ Application

13 AT+CPIN? +CPIN: READY AT+CREG? +CREG: 0,1 AT+CSQ +CSQ: 31,0 AT+CGATT? +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+CIPMUX=0 AT+CIPMODE=1 AT+CSTT= CMNET,, AT+CIICR //Start task and set APN, User Name and Password. Please ask your local GSM provider to get the APN. AT+CIFSR AT+CIPSTART="UDP"," ","7806" CONNECT Hello ATO CONNECT SIM900 & WCDMA Series Modules_ Application

14 AT+CIPSHUT SHUT 3.6 Multi Connection In Non-transparent Mode AT AT+CPIN? +CPIN: READY AT+CREG? +CREG: 0,1 AT+CSQ +CSQ: 30,0 AT+CGATT? +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+CIPMODE? +CIPMODE: 0 AT+CIPMUX=1 AT+CSTT= CMNET,, //Start task and set APN, User Name and Password. Please ask your local GSM provider to get the APN. AT+CIICR SIM900 & WCDMA Series Modules_ Application

15 AT+CIFSR AT+CIPSTART=0,"UDP"," ","7806" 0, CONNECT AT+CIPSTART=1,"TCP"," ","7806" 1, CONNECT AT+CIPSEND=1 > HELLO 1, SEND AT+CIPSEND=0 > HI SERVER 0, SEND AT+CIPCLOSE=0 0, CLOSE AT+CIPCLOSE=1 1, CLOSE AT+CIPSHUT SHUT PS: Regarding the TCP connection, please help to refer SIM900_TCPIP_Application Note_V SIM900 Series Modules FTP Application Logs File Transfer Protocol application provides a mode to interact with FTP server. The basic applications contain GET, PUT methods, which also supports broken transfer resuming function.put method supports APPE, STOR and other modes. 4.1 FTP GET METHOD RDY +CFUN: 1 +CPIN: READY SIM900 & WCDMA Series Modules_ Application

16 Call Ready AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 27,0 AT+CGATT? //Check GPRS service enabled or not +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+SAPBR=3,1,"CONTYPE","GPRS" //Set bearer parameters AT+SAPBR=3,1,"APN","CMNET" AT+SAPBR=1,1 //Activate bearer context AT+SAPBR=2,1 +SAPBR: 1,1," " AT+FTPCID=1 //Set FTP bearer profile identifier AT+FTPSERV="simcom.exavault.com" //Set FTP server address AT+FTPUN="zhangkun" //Set FTP user name AT+FTPPW="1234" //Set FTP password AT+FTPGETNAME="123.txt" //Set download file name AT+FTPGETPATH="/" //Set download file path SIM900 & WCDMA Series Modules_ Application

17 AT+FTPGET=1 //Download file +FTPGET:1,1 AT+FTPGET=2,1024 //Request to read 1024 Bytes data +FTPGET:2,132 DFSDFEWERTTGDFGDFDGDGDFGDFGDFGDFGDSFGDSFGDRETET43422WWWWWWWWWWWW WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW WWWWWWWWWWWWWWWWWWWW +FTPGET:1,0 //Data transfer finished 4.2 FTP PUT METHOD RDY +CFUN: 1 +CPIN: READY Call Ready AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 27,0 AT+CGATT? //Check GPRS service enabled or not +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+SAPBR=3,1,"CONTYPE","GPRS" //Set bearer parameters AT+SAPBR=3,1,"APN","CMNET" SIM900 & WCDMA Series Modules_ Application

18 AT+SAPBR=1,1 //Activate bearer context AT+SAPBR=2,1 +SAPBR: 1,1," " AT+FTPCID=1 //Set FTP bearer profile identifier AT+FTPSERV="simcom.exavault.com" //Set FTP server address AT+FTPUN="zhangkun" //Set FTP User Name AT+FTPPW="1234" //Set FTP password AT+FTPPUTNAME="1K.txt" //Set upload file name AT+FTPPUTPATH="/" //Set upload file path AT+FTPPUT=1 //Upload file +FTPPUT:1,1,1360 AT+FTPPUT=2,0 //Terminate uploading +FTPPUT:1,0 4.3 How to get the FTP file size and delete the FTP file. AT+GSV SIMCOM_Ltd SIMCOM_SIM900 Revision: 1137B09SIM900B64_ST_FTPSIZE_ added in the next official release version. // This is a beta FW, and this solution will be SIM900 & WCDMA Series Modules_ Application

19 AT+CREG? +CREG: 0,1 AT+CSQ +CSQ: 30,0 AT+CGATT? +CGATT: 1 AT+SAPBR=3,1,"CONTYPE","GPRS" AT+SAPBR=3,1,"APN","CMNET" AT+SAPBR=1,1 AT+SAPBR=2,1 +SAPBR: 1,1," " AT+FTPCID=1 AT+FTPSERV="simcom.exavault.com" AT+FTPUN="zhangkun" AT+FTPPW="1234" AT+FTPGETNAME="1234.txt" // Before you execute above two commands; you need use the AT+FTPGETNAME & AT+FTPGETPATH to get your file name and path, which you want to deal with. And make sure the file which you want to deal with exist in your FTP server. SIM900 & WCDMA Series Modules_ Application

20 AT+FTPGETPATH="/" AT+FTPSIZE // Get the FTP file size. +FTPSIZE:1,0,51 AT+FTPDELE //In this example, it shows the file size is 51 bytes. // Delete the FTP file. +FTPDELE:1,0 4.4 How to list the FTP files, create and delete the folder AT+GSV SIMCOM_Ltd SIMCOM_SIM900 Revision:1137B11SIM900M64_ST_FTPLIST_ AT+CPIN? +CPIN: READY AT+CSQ +CSQ: 22,0 AT+CREG? +CREG: 0,1 AT+CGATT? +CGATT: 1 AT+SAPBR=3,1,"CONTYPE","GPRS" SIM900 & WCDMA Series Modules_ Application

21 AT+SAPBR=3,1,"APN","CMNET" //please help to use your local APN. Smart Machine Smart Decision AT+SAPBR=1,1 AT+SAPBR=2,1 +SAPBR: 1,1," " AT+FTPCID=1 AT+FTPSERV="simcom.exavault.com" //use your own FTP server. AT+FTPUN="zhangkun" AT+FTPPW="1234" AT+FTPGETPATH="/test/111" AT+FTPLIST=1 //you must get the path which you want to list its files. //To get the list. +FTPLIST:1,1 AT+FTPLIST=2,1024 //To show the list data. +FTPLIST:2,303 drwxrwx 2 zhangkun simcom 5 Apr 5 11:47. drwxrwx 3 zhangkun simcom 3 Apr 5 10:44.. rw rw 1 zhangkun simcom 3 Apr 5 10:44 1.txt rw rw 1 zhangkun simcom 6 Apr 5 10:44 2.txt rw rw 1 zhangkun simcom 9 Apr 5 10:44 3.txt SIM900 & WCDMA Series Modules_ Application

22 +FTPLIST:1,0 commands until this report occurred. AT+FTPGETPATH="/test/111/test" /test/111. AT+FTPMKD //Finished. You need to wait to write other AT //To create a new folder named test in the path // Create this new folder. +FTPMKD:1,0 AT+FTPGETPATH="/test/111/" new folder test whether is exist. //Finished and successfully. //To list the path /test/111 again and check this AT+FTPLIST=1 +FTPLIST:1,1 AT+FTPLIST=2,1024 +FTPLIST:2,364 drwxrwx 3 zhangkun simcom 6 Apr 6 02:16. drwxrwx 3 zhangkun simcom 3 Apr 5 10:44.. rw rw 1 zhangkun simcom 3 Apr 5 10:44 1.txt rw rw 1 zhangkun simcom 6 Apr 5 10:44 2.txt rw rw 1 zhangkun simcom 9 Apr 5 10:44 3.txt drwxrwx 2 zhangkun simcom 2 Apr 6 02:16 test //you can find this new folder is exist. +FTPLIST:1,0 SIM900 & WCDMA Series Modules_ Application

23 AT+FTPGETPATH="/test/111/test" need to get its path. Smart Machine Smart Decision //To delete this new folder test. At first you AT+FTPRMD //Delete the Folder. +FTPRMD:1,0 AT+FTPGETPATH="/test/111/" //To list the path /test/111 again and check this new folder test whether is deleted successfully. AT+FTPLIST=1 +FTPLIST:1,1 AT+FTPLIST=2,1024 +FTPLIST:2,303 drwxrwx 2 zhangkun simcom 5 Apr 6 02:17. drwxrwx 3 zhangkun simcom 3 Apr 5 10:44.. rw rw 1 zhangkun simcom 3 Apr 5 10:44 1.txt rw rw 1 zhangkun simcom 6 Apr 5 10:44 2.txt rw rw 1 zhangkun simcom 9 Apr 5 10:44 3.txt //you can find this new folder is deleted successfully. +FTPLIST:1,0 Note: Regarding the FTP application, please help to refer SIM900_IP_Application Note_V SIM900 Series Modules HTTP Application Logs Hyper Text Transfer Protocol application provides a mode to alternate of HTTP server. The basic application contains GET, POST, HEAD methods; it also supports proxy server, redirection, broken transfer resuming functions. 5.1 HTTP GET METHOD AT SIM900 & WCDMA Series Modules_ Application

24 AT+GSV SIMCOM_Ltd SIMCOM_SIM900 Revision:1137B10SIM900M64_ST AT+IPR? +IPR: 0 AT+IPR= AT+CPIN? +CPIN: READY AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 31,0 AT+CGATT? //Check GPRS service enabled or not +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+SAPBR=3,1,"Contype","GPRS" //Set bearer parameters AT+SAPBR=3,1,"APN","CMNET" AT+SAPBR=1,1 //Activate bearer context SIM900 & WCDMA Series Modules_ Application

25 AT+SAPBR=2,1 +SAPBR: 1,1," " Call Ready AT+HTTPINIT //Initialize HTTP service AT+HTTPPARA="CID",1 //Set parameters for HTTP session AT+HTTPPARA="URL"," AT+HTTPACTION=0 //Start HTTP GET session +HTTPACTION:0,200,71 AT+HTTPREAD //Read the data of HTTP server +HTTPREAD:71 <script language=javascript>location.href='english/index.aspx'</script> AT+HTTPTERM //Terminate HTTP service 5.2 HTTP POST METHOD AT AT+GSV SIMCOM_Ltd SIMCOM_SIM900 Revision:1137B10SIM900M64_ST AT+CPIN? +CPIN: READY SIM900 & WCDMA Series Modules_ Application

26 AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 31,0 AT+CGATT? //Check GPRS service enabled or not +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+SAPBR=3,1,"Contype","GPRS" //Set bearer parameters AT+SAPBR=3,1,"APN","CMNET" AT+SAPBR=1,1 //Activate bearer context AT+SAPBR=2,1 +SAPBR: 1,1," " AT+HTTPINIT //Initialize HTTP service AT+HTTPPARA="CID",1 //Set parameters for HTTP session AT+HTTPPARA="URL"," :7806" AT+HTTPDATA=5,10000 //POST data to HTTP server DOWNLOAD AT+HTTPACTION=1 //Start HTTP post session SIM900 & WCDMA Series Modules_ Application

27 +HTTPACTION:1,200,10 AT+HTTPTERM //Post the data successfully //Terminate HTTP service 5.3 HTTP HEAD METHOD AT AT+GSV SIMCOM_Ltd SIMCOM_SIM900 Revision:1137B10SIM900M64_ST AT+CPIN? +CPIN: READY AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 31,0 AT+CGATT? //Check GPRS service enabled or not +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+SAPBR=3,1,"Contype","GPRS" //Set bearer parameters AT+SAPBR=3,1,"APN","CMNET" AT+SAPBR=1,1 //Activate bearer context SIM900 & WCDMA Series Modules_ Application

28 AT+SAPBR=2,1 +SAPBR: 1,1," " AT+HTTPINIT //Initialize HTTP service AT+HTTPPARA="CID",1 //Set parameters for HTTP session AT+HTTPPARA="URL"," AT+HTTPACTION=2 //Start HTTP HEAD session +HTTPACTION:2,200,0 AT+HTTPTERM //Terminate HTTP service Note: Regarding the HTTP application, please help to refer SIM900_IP_Application Note_V Hypertext Transfer Protocol Secure (HTTPS) Hypertext Transfer Protocol Secure (HTTPS) is a combination of Hypertext Transfer Protocol (HTTP) with SSL/TLS protocol. It provides encrypted communication and secure identification of a network web server. HTTPS connections are often used for payment transactions on the World Wide Web and for sensitive transactions in corporate information systems. Note: For these special commands, please help to refer SIM900_HTTPS_ATC_V1.00. AT AT+GSV SIMCOM_Ltd SIMCOM_SIM900 Revision:1137B10SIM900M64_ST_HTTPS_TEST_ //Special test FW. AT+CPIN? +CPIN: READY SIM900 & WCDMA Series Modules_ Application

29 AT+CREG? Smart Machine Smart Decision +CREG: 0,1 AT+CSQ +CSQ: 27,0 AT+CGATT? +CGATT: 1 AT+SAPBR=3,1,"Contype","GPRS" AT+SAPBR=3,1,"APN","CMNET" BUSY AT+SAPBR=1,1 AT+SAPBR=2,1 +SAPBR: 1,1," " AT+HTTPSSL=1 //Enable the SSL function AT+HTTPINIT AT+HTTPPARA="CID",1 AT+HTTPPARA="URL"," //The URL must support SSL function AT+HTTPACTION=0 +HTTPACTION:0,302,376 the data of the HTTP server AT+HTTPREAD //Wait for the response and then issue AT+HTTPREAD to read +HTTPREAD:376 <HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8"> <TITLE>302 Moved</TITLE></HEAD><BODY> <H1>302 Moved</H1> The document has moved <A HREF=" p:// A">here</A>. </BODY></HTML> SIM900 & WCDMA Series Modules_ Application

30 AT+HTTPTERM Smart Machine Smart Decision 6 SIM900 Series Modules Application Log (Send an with an attachment) Note: For the detail, please help to refer SIM900_ _ATC_V1.01. RDY +CFUN: 1 +CPIN: READY Call Ready AT AT+GSV SIMCOM_Ltd SIMCOM_SIM900 Revision: 1137B03SIM900M64_ST_MMS AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 27,0 AT+CGATT? //Check GPRS service enabled or not +CGATT: 1 // 1 indicate that attached the GPRS service successfully. If 0, set AT+CGATT=1 AT+SAPBR=3,1,"Contype","GPRS" //Set bearer parameters SIM900 & WCDMA Series Modules_ Application

31 AT+SAPBR=3,1,"APN","CMNET" AT+SAPBR=1,1 //Activate bearer context AT+SAPBR=2,1 +SAPBR: 1,1," " AT+ CID=1 //Set parameters of AT+ TO=30 //Set timeout value of SMTP/POP3 server response AT+SMTPSRV="mail.sim.com",25 //Set SMTP server address and port AT+SMTPAUTH=1,"kun.zhang","antony" //Set user name and password //Set sender address and name //Set the recipient (To:) //Set the recipient (Cc:) //Set the recipient (Bcc:) AT+SMTPSUB="Test" //Set the subject of AT+SMTPBODY //Set the body context of > HELLO AT+SMTPFILE=1,"test.txt",0 AT+SMTPSEND // Set the Attachment //Send the SIM900 & WCDMA Series Modules_ Application

32 +SMTPFT: 1,1360 AT+SMTPFT=100 //For below commands detailed explanations, please help to refer SIM900_ _ATC_V1.01 page 26. +SMTPFT: 2,100 +SMTPFT:1,1360 AT+SMTPFT=0 +SMTPSEND: 1 //Send successfully 7 SIM900 Series Modules DDET Application Log DDET means DTMF detection. This application can be used to detect the DTMF tone from remote side which is enabled by AT command AT+DDET=1 RDY +CFUN: 1 +CPIN: READY Call Ready AT AT+GSV SIMCOM_Ltd SIMCOM_SIM900 Revision: 1137B08SIM900M64_ST_DTMF_JD_MMS //The special FW supports the DTMF detecting. AT+CREG? //Check registration status +CREG: 0,1 AT+CSQ //Check signal quality +CSQ: 27,0 SIM900 & WCDMA Series Modules_ Application

33 AT+DDET=1 //enable DTMF detection Set up a call connection ATD ; //Set up a call and wait for call connected. +DTMF:1 //When the module detects the DTMF, URC will be reported via serial port. //Report the DTMF value. +DTMF:2 +DTMF:3 +DTMF:4 +DTMF:5 +DTMF:6 +DTMF:7 +DTMF:8 +DTMF:9 +DTMF:* +DTMF:0 +DTMF:# Receive an incoming call RING ATA // Answering an incoming call. +DTMF:1 //When the module detects the DTMF, URC will be reported via serial port. //Report the DTMF value. +DTMF:2 +DTMF:3 +DTMF:4 SIM900 & WCDMA Series Modules_ Application

34 +DTMF:5 +DTMF:6 +DTMF:7 +DTMF:8 +DTMF:9 +DTMF:* +DTMF:0 +DTMF:# Note: For the detail, please help to refer SIM900_DDET_Application Note_V SIM900 Series Modules Jamming detection Application Log The Jamming Detection function is developed for detecting a Jamming to the device by AT command AT+SJDR. With this solution, in case there is a Jamming, the event can be reported by URC or indicated by a dedicated GPIO. Note: For SIM900/SIM900B/SIM900D, the GPIO and the pin is different. In normal mode (No Jamming detected), the GPIO s logic level is low; when jamming detected, it will toggle to high level. The GPIO number for each module: SIM900: PIN68 SIM900D: PIN40 SIM900B: PIN32 RDY +CFUN: 1 +CPIN: READY Call Ready AT AT+GSV SIMCOM_Ltd SIMCOM_SIM900 SIM900 & WCDMA Series Modules_ Application

35 Revision: 1137B08SIM900M64_ST_DTMF_JD_MMS //The special FW supports the Jamming detecting. Disable Jamming detection: AT+SJDR=0 //Switch off jamming detection. AT+SJDR? //Ask current status. +SJDR:0 //Current status is disabled. Enable Jamming detection: In mode 0 AT+SJDR=1,0 //Enable Jamming detect in mode 0. AT+SJDR? //Module detected Jamming. //Ask status. +SJDR:1,0,1 //Jamming detected. //Module in normal condition. AT+SJDR? //Ask status. +SJDR:1,0,0 //No Jamming. In mode 1 AT+SJDR=1,1 //Enable Jamming detect in mode 1. The URC will report automatically Module detected Jamming +SJDR: JAMMING DETECTED //Jamming detected. Module in normal condition +SJDR:NO JAMMING //No Jamming. In mode 2 and mode 3 If you set AT+SJDR=1,2 you need to check the GPIO status to get the jamming result. If you set AT+SJDR=1,3 the results would indicate through not only serial port but also GPIO. Note: For detail, please help to refer SIM900_JD_Application Note_V SIM900 Series Modules GSM location Application Log The GSM Location function is designed base on Google Map service, with a single AT command SIM900 & WCDMA Series Modules_ Application

36 AT+CIPGSMLOC (communicating with Google server), the module can get rough location information, date, and GMT+0 time. AT AT+GSV SIMCOM_Ltd SIMCOM_SIM908 Revision:1137B03SIM908M64_ST_TEST_CIPGSMLOC_ AT+CPIN? +CPIN: READY AT+CREG? +CREG: 0,1 AT+CSQ +CSQ: 31,0 AT+SAPBR=3,1,"Contype","GPRS" //Set bearer parameter AT+SAPBR=3,1,"APN","CMNET" AT+SAPBR=1,1 //Activate bearer context AT+SAPBR=2,1 +SAPBR: 1,1," " AT+CIPGSMLOC=1,1 +CIPGSMLOC: 0, , ,2011/11/09,09:53:09 SIM900 & WCDMA Series Modules_ Application

37 Note: For the detail, please help to refer SIM900_GSM Location AT Command Manual_V1.00. Smart Machine Smart Decision 10 SIM900 Series Modules Net Scan Application Log The Net Scan function is developed for helping customer to get the best cell (rxlev>10) information locally without SIM card plugged in. As a result, user can know which network and cell is the best one by AT command AT+CNETSCAN. Note: After you power on the module, you d better wait around 10s -15s since the module needs some time to search all the network signals. AT AT+GSV SIMCOM_Ltd SIMCOM_SIM900 Revision:1137B10SIM900M64_ST_ _CNETSCAN //The special test FW AT+CNETSCAN MOST SUITABLE CELL Operator:"CHINA MOBILE",MCC:460,MNC:0,Rxlev:47,Cellid:f621,Arfcn:0081 Operator:"CHINA MOBILE",MCC:460,MNC:0,Rxlev:27,Cellid:f411,Arfcn:0023 Operator:"CHINA MOBILE",MCC:460,MNC:0,Rxlev:25,Cellid:f412,Arfcn:0027 Operator:"CHINA MOBILE",MCC:460,MNC:0,Rxlev:26,Cellid:f212,Arfcn:0016 Operator:"CHINA MOBILE",MCC:460,MNC:0,Rxlev:13,Cellid:f2a1,Arfcn:0025 Operator:"CHINA MOBILE",MCC:460,MNC:0,Rxlev:16,Cellid:2061,Arfcn:0028 Operator:"CHINA MOBILE",MCC:460,MNC:0,Rxlev:12,Cellid:1323,Arfcn:0021 Operator:"CHINA MOBILE",MCC:460,MNC:0,Rxlev:14,Cellid:f651,Arfcn: OTHER SUITABLE CELL Operator:"CHN-UNICOM",MCC:460,MNC:1,Rxlev:26,Cellid:0e93,Arfcn:0723 Operator:"CHN-UNICOM",MCC:460,MNC:1,Rxlev:22,Cellid:b5f0,Arfcn:0110 Operator:"CHN-UNICOM",MCC:460,MNC:1,Rxlev:15,Cellid:3e45,Arfcn:0731 Operator:"CHN-UNICOM",MCC:460,MNC:1,Rxlev:14,Cellid:0e95,Arfcn:0725 Operator:"CHN-UNICOM",MCC:460,MNC:1,Rxlev:22,Cellid:0e94,Arfcn:0736 Operator:"CHN-UNICOM",MCC:460,MNC:1,Rxlev:17,Cellid:bc22,Arfcn:0117 Operator:"CHN-UNICOM",MCC:460,MNC:1,Rxlev:12,Cellid:be2b,Arfcn:0124 SIM900 & WCDMA Series Modules_ Application

38 11 SIM900 Series Modules FOTA Application Log The FOTA application means Firmware Over The Air, this solution provides a way to update the module firmware by SIMCom AT commands. The idea is downloading the delta file from a FTP server firstly and then writes to module flash. Note: The FOTA application must be supported by special FW from SIMCom. Standard FW doesn t support this feature. The files for SIM900 FOTA test are showed as below: 11.1 How to use our SIM900 EVB+SIM900TE module to do the FOTA test. This Example shows how to use the delta firmware file (the delta firmware file has been divided into two parts. Named simcom_1to2test delta and simcom_1to2test delta) to upgrade the FW from V1 to V2. We divided this file into two parts, just for testing used our EVB board. The reason is that AT+GTFOTA just can send the maximum 8K bytes data each time. (1). Use flash upgrade tool to do the FW upgrading. Upgrade the FW to 1137B10SIM900M64_ST_FOTA_TEST_V1.cla SIM900 & WCDMA Series Modules_ Application

39 (2). Follow below AT test logs to do the FOTA test. For the detail, please help to refer SIM900_FOTA_Application Note_V1.00. Note: I have changed two commands setting for your reference. AT+GTFOTA="WHD,8192,0,20000 // This command is used to upload the first delta file ms, the time you can set a proper one by yourself. AT+GTFOTA="WHD,3252,8192,20000 // This command is used to upload the second delta file ms, the time you can set a proper one by yourself. SIM900 & WCDMA Series Modules_ Application

40 11.2 How to do the FOTA test through MCU. For the customer who has their own MCU. They can follow our APP Note to download the delta firmware file (Named: simcom_1to2test.delta) from a FTP server. For example, you can put this file in someone s FTP. Follow below steps. SIM900 & WCDMA Series Modules_ Application

41 Note: For the detail, please help to refer SIM900_FOTA_Application Note_V SIM900 Series Modules TTS (Text To Speech) Application Log 12.1 Play synthetic speech locally by UCS2 coding text AT+DTAM=0 //Set synthetic speech played locally AT+CTTS=1," E E " //Text in UCS2 coding format, context of the text is WARNING! FIRE!. //Speech synthetized successfully, played locally. +CTTS:0 //Speech played over. Note: User needs to wait this response to play next speech! 12.2 Play synthetic speech remotely by ASIIC coding text AT+DTAM=1 //Set synthetic speech played remotely ATD ; Setup a voice call AT+CTTS=2,"WARNING! FIRE!" //Text in ASIIC coding format. SIM900 & WCDMA Series Modules_ Application

42 // Speech synthetized successfully, remotely. played +CTTS:0 //Speech played over. Note: User needs to wait this response to play next speech! 12.3 Stop playing synthetic speech AT+CTTS=0 //Stop playing synthetic speech Note: The currently supported beta FW is 1137B08SIM900M128_ST_TTS_TEST_0509. And this function can only be supported by SIM900 series ST128M flash module. For the detailed application, please help to refer SIM900_TTS_Application Note_V SIM900 Series Modules SMS Auto run Application Log (do some remote configuration of the SIM900 module by sending AT commands over SMS) Test Example: Through SMS sending AT+CFUN=1,1 to SIM900 to let it restart. 1. AT+CAUTORUN=1, phone number // 1 Enable this feature (the default value is 0, disabled) Phone number the AT feedback value, which you want to send to. 2. Please help to use the remote module or phone to send the SMS (AT+CFUN=1,1) to SIM900. //The content of SMS is AT+CFUN=1,1. 3. At last, you will find SIM900 restart. Note: If you have any interest with this new feature, please contact with us freely. SIM900 & WCDMA Series Modules_ Application

43 14 WCDMA Series Modules MMS Application Logs 14.1 MMS Send AT AT+CPIN? +CPIN: READY AT+CREG? +CREG: 0,1 AT+CPSI? +CPSI: WCDMA,Online,460-01,0xA809, ,WCDMA IMT 2000,279,10663,0,5.5,66,25,29,500 AT+CSQ +CSQ: 22,99 AT+CMMSCURL="mmsc.myuni.com.cn" +STIN: 25 // Set the MMS center URL without AT+CMMSPROTO=1," ",80 // or AT+CMMSPROTO=0," ",9201 AT+CGSOCKCONT=1,"IP","UNIWAP" // APN for mms is important AT+CMMSEDIT=1 // switch to edit mode AT+CMMSDOWN="TITLE",5 >TITLE // Set the title of MMS to TITLE. AT+CMMSDOWN="TEXT",5,"T1.TXT" >12345 // Add a text file named t1.txt with length of 5 bytes. AT+FSCD? +FSCD: C:/ //query the current directory. SIM900 & WCDMA Series Modules_ Application

44 AT+FSCD=Picture +FSCD: C:/Picture/ // Select C: /Picture/ as current directory AT+FSCD? +FSCD: C:/Picture/ AT+FSLS +FSLS: FILES: _ jpg // List directories/files in current directory // the file name which in current directory. AT+CMMSDOWN="FILE",1," _ jpg" // select JPG file from module memory //Add recipients AT+CMMSSEND=" " +CMMSSEND: 0 //Start MMS sending 14.2 MMS Receive +WAP_PUSH_MMS: " ","TLGhBbNMC7SA"," WAP_PUSH: 0,, F04408A C B8423F03A C F6E2F766E642E E6D6D732D6D B487AF848C C E4D D A2F2F31302E39352E E F544C E4D F A802B F D504C4D4E008A808E02644B AT+CMMSEDIT=0 AT+CMMSRECV=" //Receive MMS +CMMSRECV: 0 AT+CMMSSAVE=0 SIM900 & WCDMA Series Modules_ Application

45 +CMMSSAVE:0 AT+CMMSVIEW=0 +CMMSVIEW:0," "," ",,," :04:39"," 轛 Y ", ,""< >",30,347 1,"Photo048.jpg",7, ,"123.txt",4,3 15 WCDMA Series Modules TCP Application Logs 15.1 TCP Client AT+CPIN? +CPIN: READY AT+CSQ +CSQ: 27, 99 AT+CREG? +CREG: 0, 1 AT+CGSOCKCONT=1,"IP","CMNET" // Set the PDP context profile. AT+CSOCKSETPN=1 //Set active PDP context s profile number and it supports from 1 to 16. AT+NETOPEN="TCP", 8409, 0 //Open socket; 8409 is TCP port and 0 means single-client or tcp-server. Network opened AT+TCPCONNECT=" ", 8409 Connect ok // Establish TCP connection AT+TCPWRITE=5 // Send TCP data and the data length is 5. > HELLO +TCPWRITE: 5, 5 // the first 5 means that requested number of data bytes to be SIM900 & WCDMA Series Modules_ Application

46 transmitted, and the second 5 means that confirmed number of data bytes to be transmitted UDP Client AT+CPIN? +CPIN: READY AT+CSQ +CSQ: 27, 99 AT+CREG? +CREG: 0, 1 AT+CGSOCKCONT=1,"IP","CMNET" AT+CSOCKSETPN=1 AT+NETOPEN="UDP",8309 Network opened //8309 is UDP port. AT+UDPSEND=5," ",8309 > HELLO +UDPSEND: 5, 5 AT+UDPSEND=5," ",8309 > UDPSEND: 5, TCP Client (transparent mode) AT+CPIN? +CPIN: READY AT+CSQ +CSQ: 27, 99 SIM900 & WCDMA Series Modules_ Application

47 AT+CREG? +CREG: 0, 1 AT+CIPMODE=1 // 1 Transparent mode AT+NETOPEN="TCP", 8409 Network opened // Activate the specified socket s PDP context and Create a socket. AT&D1 // ON->OFF on DTR: Change to Command mode with remaining the connected call. AT+TCPCONNECT=" ", 8409 CONNECT // Establish TCP connection // +++ quit Switch from data mode to command mode ATO CONNECT // Switch from command mode to data mode // DTR Positive Edge-triggered quit ATO CONNECT Note: 1) +++ and Positive Edge-triggered only be available at Modem port and UART port. 2) UDP client can not be available under transparent mode? 15.4 Multi-Sockets AT+CPIN? +CPIN: READY AT+CSQ +CSQ: 26,99 AT+CREG? +CREG: 0,1 SIM900 & WCDMA Series Modules_ Application

48 AT+NETOPEN=,,1 Network opened // Activate the specified socket s PDP context and Select in multi-client mode AT+ CIPOPEN =? +CIPOPEN: (0-9), ("TCP", "UDP") AT+CIPOPEN=0,"TCP"," ", 8409 Connect ok // Establish a connection with TCP Server AT+CIPSEND=0,5 // Send data in the connection of number 0 and the data length is 5 > HELLO +CIPSEND: 5, 5 // the first 5 means that requested number of data bytes to be transmitted, and the second 5 means that confirmed number of data bytes to be transmitted. Send ok AT+CIPOPEN=2,"UDP"," ", 8309 // Establish a connection with UDP Server AT+CIPSEND=2,5 // Send data in the connection of number 2 and the data length is 5. > CIPSEND: 5, 5 AT+CIPCLOSE=0 //Close the connection of number 0 AT+CIPOPEN? +CIPOPEN: 0 +CIPOPEN: 1 +CIPOPEN: 2, "UDP", " ", CIPOPEN: 3 +CIPOPEN: 4 +CIPOPEN: 5 +CIPOPEN: 6 +CIPOPEN: 7 +CIPOPEN: 8 +CIPOPEN: 9 AT+CIPCLOSE=2 //Close the connection of number 2 SIM900 & WCDMA Series Modules_ Application

49 AT+CIPOPEN? +CIPOPEN: 0 +CIPOPEN: 1 +CIPOPEN: 2 +CIPOPEN: 3 +CIPOPEN: 4 +CIPOPEN: 5 +CIPOPEN: 6 +CIPOPEN: 7 +CIPOPEN: 8 +CIPOPEN: 9 AT+NETCLOSE Network closed //Before you execute this command, you must use AT+CIPOPEN? to make sure that all the sockets have been closed. Otherwise, this command will give a error feedback. 16 WCDMA Series Modules FTP Application Logs 16.1 FTP PUT AT+CPIN? +CPIN: READY AT+CSQ +CSQ: 27, 99 AT+CREG? +CREG: 0, 1 AT+fscd=C:/Picture +FSCD: C:/Picture/ // Set C:/Picture as current directory AT+fsls +FSLS: FILES: _ jpg // List directories/files in current directory At+cgsockcont=1,"ip","3gnet" //set the PDP context profile. SIM900 & WCDMA Series Modules_ Application

50 At+cftpport=21 // Set FTP server port At+cftpserv? +CFTPSERV: "" At+cftpserv="simcom.exavault.com" // Set FTP server domain name. at+cftpun=" Zhangkun" // Set user name for FTP access at+cftppw="1234" // Set user password for FTP access at+cftpputfile=" _ jpg",1 +CFTPPUTFILE: 0 // root path // 0 means succeed. at+cftpputfile="/zhangkun/ _ jpg",1 +CFTPPUTFILE: 0 Note: 1) Put from EFS, at+cftpputfile; 2) Put from TE, at+cftpput. // to sub folder // 0 means succeed FTP GET AT+CPIN? +CPIN: READY AT+CSQ +CSQ: 21,99 AT+CREG? +CREG: 0,1 +STIN: 25 AT+CFTPSERV="simcom.exavault.com" AT+CFTPPORT=21 SIM900 & WCDMA Series Modules_ Application

51 at+cftpun=" Zhangkun" at+cftppw="1234" AT+CGSOCKCONT=1,"IP","3GNET" AT+CFTPPUT="TEST.txt" // upload data from TE to FTP server and save it as TEST.txt. +CFTPPUT: BEGIN // <CTRL+Z> to put AT+CFTPGET="TEST.txt +CFTPGET: DATA, CFTPGET: 0 // get file from FTP server to TE. // 0 means succeed. AT+CFTPGETFILE="TEST.txt",1 +CFTPGETFILE: 0 // get file from FTP server to EFS. AT+FSCD? +FSCD: C:/ AT+FSCD=C:/Picture +FSCD: C:/Picture/ AT+FSLS +FSLS: FILES: _ jpg _ jpg TEST.txt Note: 1) Get file to EFS, at+cftpgetfile; 2) Get file to TE, at+cftpget. //Which was got from FTP server just now. SIM900 & WCDMA Series Modules_ Application

52 17 WCDMA Series Modules HTTP Application Logs 17.1 HTTP GET AT+chttpact="register.hut1.ru",80 //Connect HTTP server +CHTTPACT: REQUEST GET HTTP/1.0<CRLF> Accept: */*<CRLF> Referer: Accept-Language: zh-cn<crlf> Proxy-Connection: Keep-Alive<CRLF> User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1;.NET CLR )<CRLF> Host: register.hut1.ru<crlf> <CRLF> +CHTTPACT: DATA,224 http/ ok server: nginx/ date: thu, 21 jul :12:29 gmt content-type: application/x-javascript content-length: 0 last-modified: mon, 22 dec :54:34 gmt connection: close accept-ranges: bytes +CHTTPACT: 0 SIM900 & WCDMA Series Modules_ Application

53 17.2 HTTP POST AT+CHTTPACT="gav72.hut1.ru",80 +CHTTPACT: REQUEST POST HTTP/1.0<CRLF> Accept: */*<CRLF> Referer: Accept-Language: zh-cn <CRLF> Content-Type: application/x-www-form-urlencoded <CRLF> Proxy-Connection: Keep-Alive <CRLF> User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1;.NET CLR ) <CRLF> Host: gav72.hut1.ru <CRLF> Content-Length: 23 <CRLF> Pragma: no-cache <CRLF> <CRLF> fparam=4545&sparam=4545 <CRLF> +CHTTPACT: DATA,705 http/ ok server: nginx/ date: thu, 21 jul :01:41 gmt content-type: text/html; charset=windows-1251 connection: close x-powered-by: php/4.3.9 expires: thu, 01 jan :00:01 gmt last-modified: thu, 21 jul :01:41 gmt fparam=4545; sparam=4545;<!-- ><!-- "><!-- '><!-- ;><!-- SIM900 & WCDMA Series Modules_ Application

54 --></textarea></form></title></comment></a></div></span></ilayer></layer></iframe></noframes></style></ noscript></table></script></applet></font><!-- inner counter--><script type="text/javascript">pseudocounter = ' type="text/javascript" src="' + pseudocounter + '?' + Math.random() + '"></scr' + 'ipt>');</script> +CHTTPACT: 0 18 WCDMA Series Modules Application Logs SMTP :(Simple Mail Transfer Protocol) AT+CPIN? +CPIN: READY AT+CSQ +CSQ: 27, 99 AT+CREG? + CREG: 0, 1 AT+smtpsrv="smtp.sim.com",25 //Set SMTP server address and port number. AT+smtpauth=1,"liangliang.wu","123456!" // SMTP server authentication, user name, password AT+smtpfrom="liangliang.wu@sim.com","light" // Configure sender s mail address and present name. AT+smtprcpt=0,0,"liangliang.wu@sim.com","hello" // Configure recipients mail address and name for each SIM900 & WCDMA Series Modules_ Application

55 . AT+smtpsub="hello from light" // Write the subject for each mail. AT+smtpbody > > this is my greeting, how are you? // Write the content for each mail. AT+cgsockcont=1,"ip","3gnet" // Set the PDP context profile. AT+fscd=C:/Picture +FSCD: C:/Picture/ // Set C:/Picture as current directory AT+fsls + FSLS: FILES: _ jpg _ jpg TEST2.TXT // List directories/files in current directory AT+smtpfile=1," _ jpg" //Select files from current directory in file system as s attachments. AT+smtpfile=2,"TEST2.TXT" AT+smtpsend // Initiate session and send . +SMTP: +SMTP: SUCCESS // Send successfully POP3 :(Post Office Protocol-Version3) AT+CPIN? +CPIN: READY AT+CSQ +CSQ: 27, 99 AT+CREG? SIM900 & WCDMA Series Modules_ Application

56 + CREG: 0, 1 AT+cgsockcont=1,"ip","3gnet" // Set the PDP context profile. AT+pop3srv="pop3.163.com", username", psd",110 //Configure POP3 server and access account. AT+pop3in +POP3: SUCCESS //Establish TCP session and access POP3 server. AT+pop3num +POP3: 509, //Inquire the number of unread and the total size of these unread s. AT+pop3list=1 +POP3: 1, 3095 //List the ID-1 s size. AT+pop3hdr=1 From: <Alina@Dell.com> Date: Thu, 11 Jan :22: Subject: //Get the ID-1 s header. AT+pop3get=1 +POP3: SUCCESS C:/ / /, 000.TXT //Get ID-1 and save its attachments into directory C:/ . AT+ pop3read Subject: Date: Thu, 11 Jan :22: From: <Alina@Dell.com> To: <inviolet@ 163.com> Hi, I have had lunch. Now, I will study English. What do you do? Best regards! Alina // Read the content of , including header and body. SIM900 & WCDMA Series Modules_ Application

Smart Machine Smart Decision. SIM900_IP_Application Note_V1.07 1

Smart Machine Smart Decision. SIM900_IP_Application Note_V1.07 1 SIM900_IP_Application Note_V1.07 SIM900_IP_Application Note_V1.07 1 Document Title: SIM900 IP Application Note Version: 1.07 Date: 2014-05-28 Status: Document Control ID: Release SIM900_IP_Application

More information

SIM7000 Series_FTP_Application Note_V1.00

SIM7000 Series_FTP_Application Note_V1.00 SIM7000 Series_FTP_Application Note_V1.00 Document Title SIM7000 Series_FTP_Application Note Version 1.00 Date Status Document Control ID Release SIM7000 Series_FTP_ Application Note_V1.00 General Notes

More information

TCPIP Application Note for WCDMA Solution V3.2

TCPIP Application Note for WCDMA Solution V3.2 TCPIP Application Note for WCDMA Solution V3.2 Scope SIM5218, SIM5215, SIM5216, SIM5320, SIM6216, SIM6320 Reference SIMCOM_SIM5320_ATC_EN_V1.30.doc -1-2013-05-10 Content 1. External PPP Setting...3 2.

More information

SIM7X00 Series_TCPIP_Application Note_V1.00

SIM7X00 Series_TCPIP_Application Note_V1.00 SIM7X00 Series_TCPIP_Application Note_V1.00 SIM7X00 TCPIP Application Note Document Title: SIM7X00 Series_TCPIP_Application Note Version: 1.00 Date: 2016-07-12 Status: Document ID: Release SIM7X00 Series_TCPIP_Application

More information

SIM 5360 TCPIP Application Note

SIM 5360 TCPIP Application Note SIM 5360 TCPIP Application Note Document Title: SIM5360 TCPTP Application Note Version: 0.01 Date: 2014-02-24 Status: Document ID: Developing SIM5360_TCPTP_Application_Note_V0.01 Scope SIM5360 Reference

More information

SIM7000 Series_HTTP_Application Note_V1.01

SIM7000 Series_HTTP_Application Note_V1.01 SIM7000 Series_HTTP_Application Note_V1.01 Document Title SIM7000 Series_HTTP_Application Note Version 1.01 Date Status Document Control ID Release SIM7000 Series_HTTP_ Application Note_V1.01 General Notes

More information

TCP/IP APP_V1.02 Status: Release

TCP/IP APP_V1.02 Status: Release Document Name: TCP/IP Application Notes Version: 1.02 Date: 2007-09-20 DocId: TCP/IP APP_V1.02 Status: Release General Notes SIMCom offers this information as a service to its customers, to support application

More information

(SMTP/POP3) Application Note

(SMTP/POP3) Application Note Email(SMTP/POP3) Application Note Document Title: Email(SMTP/POP3) Application Note Version: 1.00 Date: 2010-04-29 Status: Document ID: Release SIM52xx_Email_Application_Note_V1.00 General Notes SIMCom

More information

AT Command Set For Internet Service

AT Command Set For Internet Service AT Command Set AT Command Set For Internet Service Document Title: AT Command Set for Internet Service Version: 0.01 Date: 2014-02-21 Status: Document ID: Developing SIM5360_Internet_Service_Application_Note_V0.01.doc

More information

Application Note. SIM7100_MMS_Application_Note_V

Application Note. SIM7100_MMS_Application_Note_V SIM7100 Application Note MMS 0 SIM7100_MMS_Application_Note_V0.01 2014-11-8 Document Title: SIM7100 MMS Application Note Version: 0.01 Date: 2015-02-10 Status: Document ID: Release SIM7100_MMS_Application_Note_V0.01

More information

TCP/IP Application Note

TCP/IP Application Note TCP/IP Application Note Document Title: SIM52xx TCP/IP Application Note Version: 0.01 Date: 2010-04-29 Status: Document Control ID: Release SIM52xx_TCP_IP_Application_Note_V0.01 General Notes Simcom offers

More information

HTTP Application Note

HTTP Application Note HTTP Application Note Document Title: SIM52xx HTTP Application Note Version: 0.02 Date: 2010-04-29 Status: Document Control ID: Release SIM52xx_HTTP_Application_Note_V0.02 General Notes Simcom offers this

More information

SIM7500_SIM7600_SIM7800 Series_HTTP_AT Command Manual_V1.00

SIM7500_SIM7600_SIM7800 Series_HTTP_AT Command Manual_V1.00 SIM7500_SIM7600_SIM7800 Series_HTTP_AT Command Manual_V1.00 LTE Module Shanghai SIMCom Wireless Solutions Ltd. Building A, SIM Technology Building, No.633, Jinzhong Road Changning District 200335 Tel:86-21-31575100/31575200

More information

SSL Application Note. SIM5360_SSL_Application_Note_V0.01

SSL Application Note. SIM5360_SSL_Application_Note_V0.01 SSL Application Note 0 Document Title: SIM 5360 SSL Application Note Version: 0.01 Date: 2014-02-24 Status: Document ID: Developing General Notes Simcom offers this information as a service to its customers,

More information

Cinterion BGS2T (RS232) Terminal Starter Kit. Getting Started Guide

Cinterion BGS2T (RS232) Terminal Starter Kit. Getting Started Guide Cinterion BGS2T (RS232) Terminal Starter Kit Getting Started Guide BGS2T (RS232) Terminal Starter Kit Contents PLEASE NOTE KIT CONTENTS MAY VARY ACCORDING TO ORIGIN AND THE INTENDED COUNTRY OF OPERATION

More information

SIMCom_3G_MQTT_Application Note_V1.00

SIMCom_3G_MQTT_Application Note_V1.00 SIMCom_3G_MQTT_Application Note_V1.00 Document Title: SIMCom_3G_MQTT_Application Note Version: 1.00 Date: 2014-2-18 Status: Document Control ID: Prepare SIMCom_3G_MQTT_Application Note_V1.00 General Notes

More information

AT Command Addendum and Getting Started Guide for LAT1 Devices. Telit Firmware x3 Reference Guide.

AT Command Addendum and Getting Started Guide for LAT1 Devices. Telit Firmware x3 Reference Guide. AT Command Addendum and Getting Started Guide for LAT1 Devices Telit Firmware 17.00.5x3 Reference Guide www.multitech.com AT Command Addendum and Getting Started Guide for LAT1 Devices using Telit Firmware

More information

SMS Application notes AN_SMS_V1.01

SMS Application notes AN_SMS_V1.01 AN_SMS_V1.01 Document Title: SMS Application notes Version: 1.01 Date: 2006-09-25 Status: Document Control ID: Release AN_SMS_V1.01 General Notes Simcom offers this information as a service to its customers,

More information

EC2x&EG9x&EM05 PPP Application Note

EC2x&EG9x&EM05 PPP Application Note EC2x&EG9x&EM05 PPP Application Note LTE Module Series Rev. EC2x&EG9x&EM05_PPP_Application_Note_V1.0 Date: 2017-12-08 Status: Released www.quectel.com Our aim is to provide customers with timely and comprehensive

More information

WCDMA UGxx PPP Application Note

WCDMA UGxx PPP Application Note WCDMA UGxx PPP Application Note UMTS/HSPA Module Series Rev. WCDMA_UGxx_PPP_Application_Note_V1.2 Date: 2015-04-01 www.quectel.com Our aim is to provide customers with timely and comprehensive service.

More information

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide Gemalto EHS6T-USB Terminal Starter Kit Getting Started Guide EHS6T-USB Terminal Starter Kit Contents Image is for a Kit A version. Other versions with different antenna may be available. This manual is

More information

SCOPE. SMS Application notes

SCOPE. SMS Application notes Document Name: SMS Application notes Version: 01.02 Date: 2007-09-25 DocId: SMS APP_V01.02 Status: Release General Notes Simcom offers this information as a service to its customers, to support application

More information

EC2x&EG9x&EM05 HTTP(S) AT Commands Manual

EC2x&EG9x&EM05 HTTP(S) AT Commands Manual EC2x&EG9x&EM05 HTTP(S) AT Commands Manual Rev. EC2x&EG9x&EM05_HTTP(S)_AT_Commands_Manual_V1.0 Date: 2017-11-20 Status: Released www.quectel.com Our aim is to provide customers with timely and comprehensive

More information

Development KIT for TM2 GPRS modem User manual 1.2. Development KIT. Development KIT for TM2 GSM/GPRS modem User s manual 1.2

Development KIT for TM2 GPRS modem User manual 1.2. Development KIT. Development KIT for TM2 GSM/GPRS modem User s manual 1.2 Development KIT Development KIT for TM2 GSM/GPRS modem User s manual 1.2 1 Contents Attention!... 3 1. Basic Safety Requirements... 4 2. General Information... 5 2.1 Introduction... 5 2.2 About this document...

More information

EDW-ML8021 GSM GPRS Modem User s Manual. Page 1

EDW-ML8021 GSM GPRS Modem User s Manual.   Page 1 EDW-ML8021 GSM GPRS Modem User s Manual sales@eddywireless.com www.eddywireless.biz Page 1 Content EDW-ML8021 GPRS Modem User s Manual... 1 1. Introduction... 3 2. Product concept... 3 3. Application interface...

More information

This document is available at GPRS Startup. User Guide. Preliminary

This document is available at  GPRS Startup. User Guide. Preliminary This document is available at HTTP://WWW.FALCOM.DE/. GPRS Startup User Guide Preliminary Version 1.00, 27/09/2005 Contents 0 INTRODUCTION...4 0.1 REFERENCES... 4 0.2 ABBREVIATIONS... 4 1 GETTING STARTED

More information

USR-LTE 7S4 User Manual

USR-LTE 7S4 User Manual USR-LTE-7S4 User Manual Technical Support: h.usriot.com USR-LTE 7S4 User Manual File version: V1.0.3.1 1 / 13 USR-LTE-7S4 User Manual Technical Support: h.usriot.com USR-LTE 7S4 User Manual... 1 1. Overview...

More information

HTTP Protocol and Server-Side Basics

HTTP Protocol and Server-Side Basics HTTP Protocol and Server-Side Basics Web Programming Uta Priss ZELL, Ostfalia University 2013 Web Programming HTTP Protocol and Server-Side Basics Slide 1/26 Outline The HTTP protocol Environment Variables

More information

Gravity: UART A6 GSM & GPRS Module SKU: TEL0113

Gravity: UART A6 GSM & GPRS Module SKU: TEL0113 Gravity: UART A6 GSM & GPRS Module SKU: TEL0113 Introduction With the blooming development of IoT (Internet of Things), more and more people are dedicated to pursue their own IoT dreams. However traditional

More information

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS Web Access: HTTP 16501018 Mehmet KORKMAZ World Wide Web What is WWW? WWW = World Wide Web = Web!= Internet Internet is a global system of interconnected computer

More information

BG96 PPP Application Note

BG96 PPP Application Note LTE Module Series Rev. BG96_PPP_Application_Note_V1.0 Date: 2018-01-31 Status: Released www.quectel.com Our aim is to provide customers with timely and comprehensive service. For any assistance, please

More information

SIM7000 Series_AT Command Manual_V1.03 SIMCOM COMFIDENTIAL FILE

SIM7000 Series_AT Command Manual_V1.03 SIMCOM COMFIDENTIAL FILE SIM7000 Series_AT Command Manual_V1.03 Document Title SIM7000 Series AT Command Manual Version 1.03 Date 20180508 Status Document Control ID General s Release SIM7000 Series_AT Command Manual_V1.03 SIMCom

More information

The HTTP protocol. Fulvio Corno, Dario Bonino. 08/10/09 http 1

The HTTP protocol. Fulvio Corno, Dario Bonino. 08/10/09 http 1 The HTTP protocol Fulvio Corno, Dario Bonino 08/10/09 http 1 What is HTTP? HTTP stands for Hypertext Transfer Protocol It is the network protocol used to delivery virtually all data over the WWW: Images

More information

USR-G780 User Manual

USR-G780 User Manual USR-G780 User Manual File version: V1.0.4.1 1 / 13 Content USR-LTE 7S4 User Manual... 1 1. Overview... 3 1.1. Brief Introduction... 3 1.2. Basic parameter... 3 2. Function... 5 2.1. Work Mode... 6 2.1.1.

More information

ESP8266 AT Command Examples

ESP8266 AT Command Examples ESP8266 AT Command Examples Version 1.3 Espressif Systems IOT Team Copyright 2015 Disclaimer and Copyright Notice Information in this document, including URL references, is subject to change without notice.

More information

User Manual PDUTracker

User Manual PDUTracker User Manual PDUTracker Management Software for PDU Table of Contents 1. Overview... 1 1.1. Introduction... 1 1.2. Features... 1 2. Install and Uninstall... 1 2.1. System Requirement... 1 2.2. Software

More information

Getting Started Guide

Getting Started Guide Getting Started Guide 1. Apply power to the DroneCell Apply power(5vdc to 16VDC) from a 1 amp or higher power source. Be sure to connect the GNDs together. Note that there are two Power pins and two GND

More information

SIM800C-DS_Application Note _V1.00

SIM800C-DS_Application Note _V1.00 SIM800C-DS_Application Note _V1.00 Document Title: SIM800C-DS Application Note Version: 1.00 Date: Status: Document Control ID: Release SIM800C-DS_Application Note_V1.00 General Notes SIMCom offers this

More information

AT commands APLICATION NOTE

AT commands APLICATION NOTE AT commands APLICATION NOTE SYMBOLS USED Symbols used Danger important notice, which may have an influence on the user s safety or the function of the device. Attention notice on possible problems, which

More information

GSM. Quectel Cellular Engine. Firmware Update Application Note. Fw_Update_Application_Note_V3.1

GSM. Quectel Cellular Engine. Firmware Update Application Note. Fw_Update_Application_Note_V3.1 GSM Cellular Engine Firmware Update Application Note Fw_Update_Application_Note_V3.1 Document Title Firmware Update Application Note Version 3.1 Date 2012-03-08 Status Document Control ID Released Fw_Update_Application_Note_V3.1

More information

ESP8266 AT. Version 1.3

ESP8266 AT. Version 1.3 ESP8266 AT Version 1.3 Espressif Systems IOT Team Copyright 2015 URL Wi-Fi Wi-Fi 2015 Espressif Systems Confidential 2/ 18 Table of Contents 1.... 4 2. TCP Client... 5 3. UDP... 7 3.1. UDP... 8 3.2. UDP...

More information

WWW: the http protocol

WWW: the http protocol Internet apps: their protocols and transport protocols Application e-mail remote terminal access Web file transfer streaming multimedia remote file Internet telephony Application layer protocol smtp [RFC

More information

Hands-On Workshop. Introduction to AT Commands, Sending SMS & GPRS

Hands-On Workshop. Introduction to AT Commands, Sending SMS & GPRS Hands-On Workshop Introduction to AT Commands, Sending SMS & GPRS Towers of Power - Class 02 New York, April 5th 2014 Hardware Micro-controllers Lots of Options Cellphone Modules GSM Modems

More information

Ai-Thinker ESP8266. Ai-Thinker Inc. Copyright (c) Shenzhen Ai-Thinker Technology Co., Ltd All Rights Reserved

Ai-Thinker ESP8266. Ai-Thinker Inc. Copyright (c) Shenzhen Ai-Thinker Technology Co., Ltd All Rights Reserved 1 Inc Copyright (c) 2017 1 ... 2... 4 1.1... 4 1.2... 5... 6 2.1... 6 2.2... 6... 9 3.1... 9 3.2... 11 3.3... 14 3.4... 15 3.5... 15 3.6... 16 3.6.1... 17 3.6.2... 18 3.6.3... 18 3.6.4... 20... 21 4.1...

More information

USR-GPRS User Manual

USR-GPRS User Manual USR-GPRS232-730 User Manual File Version: V1.0.0.0 Contents USR-GPRS232-730 User Manual...1 Brief Introduction...3 Features...3 1. Get Start...1 1.1. DTU Application...1 1.1.1. Application Diagram...1

More information

xxx xxx Project GSM/GPS Communication Module

xxx xxx Project GSM/GPS Communication Module Test Plan Identifier: xxx-communication Module *Module testing is according to xxx-project Proposal Appendix 9: Testing Restrictions/Scope table. References: Please refer to Appendix 1: References Introduction:

More information

GSM. Quectel Cellular Engine. GSM TCPIP Recommended Process. GSM_TCPIP_Recommended_. Process_V1.2

GSM. Quectel Cellular Engine. GSM TCPIP Recommended Process. GSM_TCPIP_Recommended_. Process_V1.2 GSM Cellular Engine GSM TCPIP Recommended Process GSM_TCPIP_Recommended_ Process_V1.2 Document Title GSM TCPIP Recommended Process Version 1.2 Date 2015-04-08 Status Document Control ID Released GSM_TCPIP_Recommended_Process_V1.2

More information

RN2483_Silica Documentation

RN2483_Silica Documentation RN2483_Silica Documentation Release 0 Silica Mar 16, 2017 Contents 1 PMOD-Huawei Solution 3 2 INTRODUCTION 5 3 BAEPMOD-COM-019-A01 7 4 BAEPMOD-COM-021-A01 11 4.1 Developement tools...........................................

More information

ESP8266 AT Command Examples

ESP8266 AT Command Examples ESP8266 AT Command Examples Version 0.4 Espressif Systems IOT Team Copyright (c) 2015 Disclaimer and Copyright Notice Information in this document, including URL references, is subject to change without

More information

1. QUICKSTART GUIDE TOOLBAR ADMIN LOWER TOOLBAR DEVICES CLIP DB MONITORING GSM SETTINGS...

1. QUICKSTART GUIDE TOOLBAR ADMIN LOWER TOOLBAR DEVICES CLIP DB MONITORING GSM SETTINGS... ESR100 Contents 1. QUICKSTART GUIDE...3 2. TOOLBAR...4 3. ADMIN...5 4. LOWER TOOLBAR...5 5. DEVICES...6 6. CLIP DB...7 7. MONITORING...8 8. GSM...9 9. SETTINGS...10 2 EN ESR100 1. QUICKSTART GUIDE NOTE:

More information

MRD-310 MRD G Cellular Modem / Router Web configuration reference guide. Web configuration reference guide

MRD-310 MRD G Cellular Modem / Router Web configuration reference guide. Web configuration reference guide Web configuration reference guide 6623-3201 MRD-310 MRD-330 Westermo Teleindustri AB 2008 3G Cellular Modem / Router Web configuration reference guide www.westermo.com Table of Contents 1 Basic Configuration...

More information

Information Network Systems The application layer. Stephan Sigg

Information Network Systems The application layer. Stephan Sigg Information Network Systems The application layer Stephan Sigg Tokyo, November 15, 2012 Introduction 04.10.2012 Introduction to the internet 11.10.2012 The link layer 18.10.2012 The network layer 25.10.2012

More information

MC35 Siemens Cellular Engine

MC35 Siemens Cellular Engine MC35 Siemens Cellular Engine GPRS Startup User Guide Version: 01.01 DocId: GPRS-startup-00-V01.01 Document Name: GPRS Startup User Guide Version: 01.01 Date: 13.11.2001 Technical Support: DocId: Status:

More information

SIM900 AT Commands Manual_V1.06

SIM900 AT Commands Manual_V1.06 SIM900 AT Commands Manual_V1.06 Document Title: SIM900 AT Commands Manual Version: 1.06 Date: 2012-10-19 Status: Document Control ID: Release SIM900_AT Command Manual_V1.06 General s SIMCom offers this

More information

MAESTRO M100 SERIES SMARTPACK USER MANUAL VERSION 4 FOR APPLICATION VERSION 2.2 ON M1002G, M1003G, M1003G485, M100CDMAPLUS, M100CDMA485

MAESTRO M100 SERIES SMARTPACK USER MANUAL VERSION 4 FOR APPLICATION VERSION 2.2 ON M1002G, M1003G, M1003G485, M100CDMAPLUS, M100CDMA485 MAESTRO M100 SERIES SMARTPACK USER MANUAL VERSION 4 FOR APPLICATION VERSION 2.2 ON M1002G, M1003G, M1003G485, M100CDMAPLUS, M100CDMA485 WWW.MAESTRO-WIRELESS.COM EMAIL: SUPPORT@MAESTRO-WIRELESS.COM TEL:

More information

XC4614 AT Commands Guide

XC4614 AT Commands Guide XC4614 AT Commands Guide Settings: Factory settings are 115200 baud, 8 bits, one stop bit, no parity. All commands must end in CRLF, and the commands themselves must be upper case. A good way to get to

More information

GPRS /GSM SIM900A MODEM

GPRS /GSM SIM900A MODEM GPRS /GSM SIM900A MODEM USER MANUAL www.researchdesignlab.com Page 1 Contents Overview... 4 GSM GPRS SIM900A Modem... 4 Features... 5 Datasheets... 5 GSM Utility Software... 6 Basic AT Commands for Testing...

More information

SIMCom_3G_HTTP_Application Note_V1.00

SIMCom_3G_HTTP_Application Note_V1.00 SIMCom_3G_HTTP_Application Note_V1.00 Document Title: SIMCom_3G_HTTP_Application Note Version: 1.00 Date: Status: Document Control ID: Release SIMCom_3G_HTTP_Application Note _V1.00 General Notes SIMCom

More information

Produced by. Mobile Application Development. Higher Diploma in Science in Computer Science. Eamonn de Leastar

Produced by. Mobile Application Development. Higher Diploma in Science in Computer Science. Eamonn de Leastar Mobile Application Development Higher Diploma in Science in Computer Science Produced by Eamonn de Leastar (edeleastar@wit.ie) Department of Computing, Maths & Physics Waterford Institute of Technology

More information

Chapter 2 Application Layer

Chapter 2 Application Layer Chapter 2 Application Layer A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations;

More information

Installation & Configuration manual GSM/GPRS. OpenAT application V1.1

Installation & Configuration manual GSM/GPRS. OpenAT application V1.1 Installation & Configuration manual GSM/GPRS OpenAT application V1.1 2012 / 07 / 17 2 ! CAUTION! ELECTRIC SHOCK HAZARD IF COVER REMOVED SERVICE BY QUALIFIED PERSONEL ONLY Document History Date Version

More information

EC20 MMS AT Commands Manual

EC20 MMS AT Commands Manual EC20 MMS AT Commands Manual LTE Module Series Rev. EC20_MMS_AT_Commands_Manual_V1.0 Date: 2015-06-15 www.quectel.com Our aim is to provide customers with timely and comprehensive service. For any assistance,

More information

User Manual for VE GSM Modem

User Manual for VE GSM Modem User Manual for VE GSM Modem INTRODUCTION GSM/GPRS Smart Modem is a multi-functional, ready to use, rugged unit that can be embedded or plugged into any application. The Smart Modem can be controlled and

More information

GTM-201 Series FAQ Ver1.1. GTM-201 Series FAQ ICP DAS CO., LTD.

GTM-201 Series FAQ Ver1.1. GTM-201 Series FAQ ICP DAS CO., LTD. GTM-201 Series FAQ 1 Tables of Content GTM-201 Series FAQ Ver1.1 Q01: What is the PIN code?...3 Q02: What are the GTM-201-RS232 and GTM-201-USB default baud rate?...3 Q03: What kind of information do you

More information

Poseidon 4002 MANUAL

Poseidon 4002 MANUAL Poseidon 4002 MANUAL Poseidon 4002 MANUAL POWER input 12VDC supply (jack or terminals) INPUTS Binary inputs 1 6 (for contacts) OUTPUTS Two 50V rated switchover relay contacts ETHERNET 10 or 100/10 Mbps

More information

Skywire LTE CAT1 Sending and Receiving SMS Messages

Skywire LTE CAT1 Sending and Receiving SMS Messages Skywire LTE CAT1 Sending and Receiving SMS Messages NimbeLink Corp Updated: May 2017 PN 30103 rev 8 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction 3

More information

ESP8266 AT Command Examples

ESP8266 AT Command Examples !! ESP8266 AT Command Examples Version 1.3 Copyright 2017 About This Guide The document gives some examples of using ESP8266 AT commands. The document is structured as follows: Chapter Title Content Chapter

More information

HTTP Reading: Section and COS 461: Computer Networks Spring 2013

HTTP Reading: Section and COS 461: Computer Networks Spring 2013 HTTP Reading: Section 9.1.2 and 9.4.3 COS 461: Computer Networks Spring 2013 1 Recap: Client-Server Communication Client sometimes on Initiates a request to the server when interested E.g., Web browser

More information

SIM7000 Series_PING_Application Note_V1.00

SIM7000 Series_PING_Application Note_V1.00 SIM7000 Series_PING_Application Note_V1.00 Document Title SIM7000 Series_PING_Application Note Version 1.00 Date Status Document Control ID Release SIM7000 Series_PING_ Application Note_V1.00 General Notes

More information

Mobile forensics. SMS (Short Message Service) EMS, MMS, CBS

Mobile forensics. SMS (Short Message Service) EMS, MMS, CBS Mobile forensics SMS (Short Message Service) EMS, MMS, CBS How the Mobiles Work The Route of a Mobile Phone Telephone Call, (or SMS or user data traffic) SIM card Radio access network Core network MS/UE

More information

Application Note. SIM7100_SMS_Application_Note_V

Application Note. SIM7100_SMS_Application_Note_V SIM7100 Application Note SMS 0 SIM7100_SMS_Application_Note_V0.01 2014-11-8 Document Title: SIM7100 SMS Application Note Version: 0.01 Date: 2015-02-10 Status: Document ID: Release SIM7100_SMS_Application_Note_V0.01

More information

Standalone DVR User s Manual. Figure 4-81

Standalone DVR User s Manual. Figure 4-81 Figure 4-81 4.11.2 Network 4.11.2.1 TCP/IP The single network adapter interface is shown as in Figure 4-82 and the dual network adapters interface is shown as in Figure 4-83 Network Mode : Includes multiple

More information

idor Mobile Setup idor Mobile : idor Mobile System Manual V1.1 1

idor Mobile Setup idor Mobile : idor Mobile System Manual V1.1 1 idor Mobile Setup Table of Contents Login into the Web-GUI... 3 Network Settings... 4 Set Static IP Address... 5 Apartments... 7 Add an Apartment... 7 Edit an Apartment... 9 Delete an Apartment... 9 SIP

More information

AlertMobile Configuration Guide

AlertMobile Configuration Guide MICROMEDIA INTERNATIONAL ALERT - remote alarm management ALERT: AlertMobile Configuration Guide Author: GL Update: GL Pages: 36 Date: 04/07/2018 Version: 3.7.3 AlertMobile Configuration Guide Réf. : HOWTO-Configure

More information

IceWarp Unified Communications. SyncML Push Guide. Version 11.3

IceWarp Unified Communications. SyncML Push Guide. Version 11.3 IceWarp Unified Communications SyncML Push Guide Version 11.3 Published on 1/6/2015 Contents SyncML Push... 4 What is SyncML Push?... 4 What Is Push Email?... 5 How does SyncML Push Work?... 6 SMS Push...

More information

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM Delta Package Firmware Update Application Notes GSM_FOTA_AN_V1.0 Document Title GSM Delta Package Firmware Update Application Notes Version 1.0 Date 2010-09-07 Status Document Control

More information

UC15 SSL AT Commands Manual

UC15 SSL AT Commands Manual UC15 SSL AT Commands Manual UMTS/HSPA Module Series Rev. UC15_SSL_AT_Commands_Manual_V1.0 Date: 2014-03-07 www.quectel.com Our aim is to provide customers with timely and comprehensive service. For any

More information

BitPipe Cellular Dev- Kit

BitPipe Cellular Dev- Kit BitPipe Cellular Dev- Kit Rev 1.2 2018-03-19 Table of Contents Table of Contents... 2 Table of figures... 3 1 Revision history... 4 2 Introduction... 4 3 Included Material... 4 4 BitPipe Development Kit

More information

Development KIT for TM2Q GSM/GPRS module. User s Manual v1.1

Development KIT for TM2Q GSM/GPRS module. User s Manual v1.1 Development KIT for TM2Q GSM/GPRS module User s Manual v1.1 TABLE OF CONTENTS 1. Basic Safety Requirements...4 2. General Information...5 2.1. INTRODUCTION...5 2.2. ABOUT THIS DOCUMENT...5 2.3. LEGAL NOTICE...5

More information

Document Name: GPRS Startup. GPRS Startup_V01.00 Status: Created

Document Name: GPRS Startup. GPRS Startup_V01.00 Status: Created Document Name: GPRS Startup Version: 01.00 Date: DocId: GPRS Startup_V01.00 Status: Created General Notes Simcom offers this information as a service to its customers, to support application and engineering

More information

Dual Mode Phone FAQ TECHNICAL SPECIFICATION

Dual Mode Phone FAQ TECHNICAL SPECIFICATION Dual Mode Phone FAQ TECHNICAL SPECIFICATION 1. Which are the main GSM bandwidths supported by the phone? Pirelli Dual Mode Phone support GSM 900/1800/1900MHZ. DP-L10 support also the GPRS Class B, multi-slot

More information

Serial interface configuration. Syntax of the standard AT commands

Serial interface configuration. Syntax of the standard AT commands Serial interface configuration The serial interface on the ATEUS GSM Gateway has to be initialized as follows: 19200,8,N,1 (baud rate 19200, data bits: 8, parity: no, stop bit: 1) No automatic baud rate

More information

UNV-SIM868 V2.2.5 user manual V1.0

UNV-SIM868 V2.2.5 user manual V1.0 UNV-SIM868 V2.2.5 user manual V1.0 time Descriptions version 2017/5/6 initial V1.0 Getting Started A little preparation goes a long way, so make sure you ve covered the following points: Regarding your

More information

Computer Networking. Chapter #1. Dr. Abdulrhaman Alameer

Computer Networking. Chapter #1. Dr. Abdulrhaman Alameer Computer Networking Chapter #1 Dr. Abdulrhaman Alameer What is Computer Network? It is a collection of computers and devices interconnected by communications channels that facilitate communications among

More information

EC20 SSL AT Commands Manual

EC20 SSL AT Commands Manual EC20 SSL AT Commands Manual LTE Module Series Rev. EC20_SSL_AT_Commands_Manual_V1.0 Date: 2015-07-02 www.quectel.com Our aim is to provide customers with timely and comprehensive service. For any assistance,

More information

SIM900 MMS AT Commands Set_V1.04

SIM900 MMS AT Commands Set_V1.04 SIM900 MMS AT Commands Set_V1.04 Document Title: SIM900 MMS AT Commands Set Version: 1.04 Date: 2014-04-14 Status: Document Control ID: Release SIM900_MMS_ATC_V1.04 General s SIMCom offers this infmation

More information

TrackingTheWorld Global Asset Tracker (GAT)

TrackingTheWorld Global Asset Tracker (GAT) TrackingTheWorld Global Asset Tracker (GAT) Personal Tracker (WGAT) V1.15 Manual Index 1. Basic first startup and testing Page 3-8 Important before you start Page 4-5 Check before starting Page 6-8 2.

More information

BG96 SSL AT Commands Manual

BG96 SSL AT Commands Manual BG96 SSL AT Commands Manual LTE Module Series Rev. BG96_SSL_AT_Commands_Manual_V1.0 Date: 2017-11-07 www.quectel.com Our aim is to provide customers with timely and comprehensive service. For any assistance,

More information

Telephony Toolbar Enterprise. User Guide

Telephony Toolbar Enterprise. User Guide Telephony Toolbar Enterprise User Guide Release 4.4 October 2009 Table of Contents 1 Summary of Changes... 7 1.1 Changes for this Release... 7 2 About This Guide... 8 2.1 Open Telephony Toolbar-Corporate...

More information

M16 GSM Module Presentation

M16 GSM Module Presentation Quectel Wireless Solutions Professional Wireless Solution Provider M16 GSM Module Presentation December 2009 Agenda M16 General description - Product advantages - Target applications - Hardware architecture

More information

INTERNET ENGINEERING. HTTP Protocol. Sadegh Aliakbary

INTERNET ENGINEERING. HTTP Protocol. Sadegh Aliakbary INTERNET ENGINEERING HTTP Protocol Sadegh Aliakbary Agenda HTTP Protocol HTTP Methods HTTP Request and Response State in HTTP Internet Engineering 2 HTTP HTTP Hyper-Text Transfer Protocol (HTTP) The fundamental

More information

BitPipe Cellular Dev-Kit

BitPipe Cellular Dev-Kit Rev 1.0 2016-09-02 1 Table of Contents Table of Contents... 2 Table of figures... 3 1. Revision history... 4 2. Introduction... 4 3. Included Material... 4 4. Requirements... 5 5. BitPipe Development Kit

More information

GSM FUNCTION APPLIED IN WIRELESS SOLUTION

GSM FUNCTION APPLIED IN WIRELESS SOLUTION Fujitsu Semiconductor Design (Chengdu) Co., Ltd. Application Note MCU-AN-500107-E-10 F²MC-8FX FAMILY 8-BIT MICROCONTROLLER MB95F370 SERIES GSM FUNCTION APPLIED IN WIRELESS SOLUTION APPLICATION NOTE Revision

More information

VMware Horizon View Deployment

VMware Horizon View Deployment VMware Horizon View provides end users with access to their machines and applications through a unified workspace across multiple devices, locations, and connections. The Horizon View Connection Server

More information

Administrator's Guide

Administrator's Guide Administrator's Guide Contents Administrator's Guide... 7 Using Web Config Network Configuration Software... 8 About Web Config... 8 Accessing Web Config... 8 Changing the Administrator Password in Web

More information

Application Level Protocols

Application Level Protocols Application Level Protocols 2 Application Level Protocols Applications handle different kinds of content e.g.. e-mail, web pages, voice Different types of content require different kinds of protocols Application

More information

Computer Networks. Wenzhong Li. Nanjing University

Computer Networks. Wenzhong Li. Nanjing University Computer Networks Wenzhong Li Nanjing University 1 Chapter 8. Internet Applications Internet Applications Overview Domain Name Service (DNS) Electronic Mail File Transfer Protocol (FTP) WWW and HTTP Content

More information

User Manual of Webmail Version 5

User Manual of Webmail Version 5 User Manual of Webmail Version 5 English Version: 1.0 Page 1 of 13 TABLE OF CONTENTS 1. ACCESS...3 1.1 Accessing to Webmail 5...3 2. COMPOSE AND SEND E-MAIL MESSAGE...4 2.1 Composing a new E-mail message...4

More information

ECE697AA Lecture 2. Today s lecture

ECE697AA Lecture 2. Today s lecture ECE697AA Lecture 2 Application Layer: HTTP Tilman Wolf Department of Electrical and Computer Engineering 09/04/08 Protocol stack Application layer Client-server architecture Example protocol: HTTP Demo

More information

Chapter 2: outline. 2.6 P2P applications 2.7 socket programming with UDP and TCP

Chapter 2: outline. 2.6 P2P applications 2.7 socket programming with UDP and TCP Chapter 2: outline 2.1 principles of network applications app architectures app requirements 2.2 Web and HTTP 2.3 FTP 2.4 electronic mail SMTP, POP3, IMAP 2.5 DNS 2.6 P2P applications 2.7 socket programming

More information