SIMCom_3G_MQTT_Application Note_V1.00

Size: px
Start display at page:

Download "SIMCom_3G_MQTT_Application Note_V1.00"

Transcription

1 SIMCom_3G_MQTT_Application Note_V1.00

2 Document Title: SIMCom_3G_MQTT_Application Note Version: 1.00 Date: Status: Document Control ID: Prepare SIMCom_3G_MQTT_Application Note_V1.00 General Notes SIMCom offers this information as a service to its customers, to support application and engineering efforts that use the products designed by SIMCom. The information provided is based upon requirements specifically provided to SIMCom by the customers. SIMCom has not undertaken any independent search for additional relevant information, including any information that may be in the customer s possession. Furthermore, system validation of this product designed by SIMCom within a larger electronic system remains the responsibility of the customer or the customer s system integrator. All specifications supplied herein are subject to change. Copyright This document contains proprietary technical information which is the property of SIMCom Limited., copying of this document and giving it to others and the using or communication of the contents thereof, are forbidden without express authority. Offenders are liable to the payment of damages. All rights reserved in the event of grant of a patent or the registration of a utility model or design. All specification supplied herein are subject to change without notice at any time. Copyright Shanghai SIMCom Wireless Solutions Ltd. 2013

3 Contents 1 Introduction Features AT commands Examples Network Environment Network open/close Connect Acquire client resource Set will topic and message Set retry timer Send CONNECT message Publish topic to MQTT server Subscribe topic Receive topic published by MQTT server Unsubscribe topic Disconnect Disconnect actively Disconnect passively Release client resource Result code Complete Examples...1 Appendix... 4 A Related Documents...4 B Terms and Abbreviations...4 SIMCom_3G_MQTT_Application Note _V1.00 2

4 Version History Date Version of change Author V1.00 New version SCOPE This document describes how to use the MQTT function of SIM5320, SIM5310 and SIM5215/SIM5216 through AT commands. Examples are also given for reference. This document can also be used for SIM5320 serial modules, like SIM5320, SIM5320JE and SIM5320AD. The develop software refer to MQTT V3.1. This document is subject to change without notice at any time. SIMCom_3G_MQTT_Application Note _V1.00 3

5 1 Introduction This document presents the AT command of MQTT operation for SIMCom 3G modules. 1.1 Features 1. Support multiple Client (max num=2) sending and receiving synchronously. 2. Support TCP MQTT client,not support SSL MQTT client. 3. Not support server. 4. Base on MQTT V3.1.

6 2 AT commands Below is the MQTT associated with AT commands, detailed information please refer to document [1]. Through these AT commands can achieve the following functions. 1) Open/close network for MQTT client. 2) Disconnect/release a client. 3) Publish one topic to server. 4) Subscribe/unsubscribe one or more topic. Command AT+CMQTTSTART AT+CMQTTSTOP AT+CMQTTACCQ AT+CMQTTREL AT+CMQTTWILLTOPIC AT+CMQTTWILLMSG AT+CMQTTRETRYTIMEOUT AT+CMQTTCONNECT AT+CMQTTDISC AT+CMQTTTOPIC AT+CMQTTPAYLOAD AT+CMQTTPUB AT+CMQTTSUBTOPIC AT+CMQTTSUB AT+CMQTTUNSUBTOPIC AT+CMQTTUNSUB Start network Close network Acquire a client resource Release the client resource Set will topic Set will message Set the value of retry timeout for connection Set up a connection to server Disconnecting for the client Set publishing topic Set publishing message Publish the configured topic Set one or more subscribe topic Subscribe the topic Set one or more unsubscribe topic Unsubscribe the topic

7 3 Examples There are some examples to explain how to use these commands. Please ensure TCP layer communication is ok before you use these command. In the "" columns of following tables, input of AT commands are in black, module return values are in blue. 3.1 Network Environment MQTT application is based on GPRS/WCDMA network and TCP layer communication; so, ensure GPRS/WCDMA network is available before TCPIP setup. Following are the recommended steps. AT+CSQ +CSQ: 31,99 Check CSQ AT+CREG? +CREG: 0,1 Check CREG state. AT+CPSI? +CPSI: GSM,Online, x1816,63905,81 EGSM 900,-68,0,31-31 Check network information. AT+CGREG? +CGREG: 0,1 Check CGREG state. 3.2 Network open/close AT+CGSOCKCONT=1,"IP","CMNET" AT+CSOCKSETPN=1 AT+CMQTTSTART +CMQTTSTART: 0 Set APN. Note, usually CSOCKAUTH and CSOCKSETPN parameter are kept default if not care about. Open up the network library and start up the network subsystem(cdma data service and PPP) over the Um interface for all sockets.

8 AT+CMQTTSTOP +CMQTTSTOP: 0 Bring down PPP and Close the network library. All opened sockets must be closed before calling this command. 3.3 Connect When network is opened, you would establish the connection from one client to server. You need to acquire the client resource with command<at+cmqttaccq> before command<at+cmqttconnct> is set. Will topic and will message setting is optional Acquire client resource AT+CMQTTACCQ=0,"client c" +CMQTTACCQ: 0,0 Acquire client index-0 resource. Client c is the client ID, The Client Identifier (Client ID) is between 1 and 23 characters long, and uniquely identifies the client to the server. If a client with the same Client ID is already connected to the server, the "older" client must be disconnected by the server before completing the CONNECT flow of the new client Set will topic and message Will topic and will message setting is optional. AT+CMQTTWILLTOPIC=0,10 >will topic AT+CMQTTWILLMSG=0,56,1 >you d better set will topic before setting will message. Set client index-0 will topic. The will topic should be UTF-encoded string. The range of length is [1, 1024] Set client index-0 will message. The will msg should be UTF-encoded string. The range of length is [1, 10240] Set retry timer This command is optional. The client will not retry to connect server when this command is SIMCom_3G_MQTT_Application Note _V1.00 2

9 not set. AT+CMQTTRETRYTIMEOUT=0,60 This command is used to set the value of retry timeout for connection Send CONNECT message AT+CMQTTCONNECT=0,"tcp:// :514 1",20,1, username, password +CMQTTCONNECT: 0,0 You should ensure the server address <IP= , port=5141> is reachable, and the MQTT server is running. 3.4 Publish topic to MQTT server After the client is connected with MQTT server, you could publish topic to MQTT server. AT+CMQTTTOPIC=0,13 >publish topic AT+CMQTTPAYLOAD=0,62 >you d better set publish topic before setting publish message. AT+CMQTTPUB=0,1,60 +CMQTTPUB: 0,0 The topic should be UTF-encoded string. The range of length is [1, 1024] The message should be UTF-encoded string. The range of length is [1, 10240] AT+CMQTTPUB=<client_index>,<q os>,<publish_interval> The publishing interval is used for setting the timer when publish is timeout. For example, the MQTT server doesn t respond to PUBLISH request, the publish timer is timeout, the client will be disconnected. 3.5 Subscribe topic After the client is connected with MQTT server, you could subscribe one or more topic to MQTT server. SIMCom_3G_MQTT_Application Note _V1.00 3

10 AT+CMQTTSUBTOPIC=0,9,1 >subscribe +CMQTTSUBTOPIC: 0,0 AT+CMQTTSUBTOPIC=0,10,1 >subscribe1 You would set this command repeatedly for more than one subscribing topic. Please set this command before you set the subscribing topic if you want to subscribe more than one topic. +CMQTTSUBTOPIC: 0,0 AT+CMQTTSUB=0 +CMQTTSUB: 0,0 Subscribe topics subscribe and subscribe1 which be set by AT+CMQTTSUBTOPIC The max input length of subscribe message. 3.6 Receive topic published by MQTT server After the client is connected with MQTT server, the client subscribes to one or more topics, any message published to those topics will be sent by the server to the client and client will transmit these topic and message to user with URC. <CR><LF>+CMQTTRXSTART: <client_index>,<topic_total_len>,<payload_total_len> <CR><LF> <CR><LF>+CMQTTRXTOPIC: <client_index>,<sub_topic_len><cr><lf><sub_topic > [<CR><LF>+CMQTTRXTOPIC: <client_index>,<sub_topic_len><cr><lf><sub_topic >] <CR><LF>+CMQTTRXPAYLOAD: <client_index>,<sub_payload_len><cr><lf><sub_pa yload> [<CR><LF>+CMQTTRXPAYLOAD: <client_index>,<sub_payload_len><cr><lf><sub_pa yload>] <CR><LF>+CMQTTRXEND: <client_index> Example: 1) +CMQTTRXSTART: <client_index>,<topic_total_len>,<pa yload_total_len> At the beginning of receiving published message, the module will send this command to user, and indicate client index with <client_index>, the topic total length with <topic_total_len> and the payload total length with <payload_total_len>. 2) +CMQTTRXTOPIC: <client_index>,<sub_topic_len>\r\n<s ub_topic> After the command +CMQTTRXSTART received, the module will send second command to user, and indicate client index with <client_index>, the topic packet length SIMCom_3G_MQTT_Application Note _V1.00 4

11 +CMQTTRXSTART: 1, 13, 12 +CMQTTRXTOPIC: 1, 13 MQTT Examples +CMQTTRXPAYLOAD: 1, 12 Hello World! +CMQTTRXEND: 1 with <sub_topic_len> and the topic content with <sub_topic> after \r\n. For long topic, it will be split to multiple packets to report and the command +CMQTTRXTOPIC will be send more than once with the rest of topic content. The sum of <sub_topic_len> is equal to <topic_total_len>. 3) +CMQTTRXPAYLOAD: <client_index>,<sub_payload_len>\r\n <sub_payload> After the command +CMQTTRXTOPIC received, the module will send third command to user, and indicate client index with <client_index>, the payload packet length with <sub_payload_len> and the payload content with <sub_payload> after \r\n. For long payload, the same as +CMQTTRXTOPIC. 4) +CMQTTRXEND: <client_index> At last, the module will send fourth command to user and indicate the topic and payload have been transmitted completely. 3.7 Unsubscribe topic After the client is connected with MQTT server, and one or more topic have been subscribed to MQTT server, you could unsubscribe this/these topic. AT+CMQTTUNSUBTOPIC=0,11 >unsubscribe +CMQTTUNSUBTOPIC: 0,0 AT+CMQTTUNSUBTOPIC=0,12 >unsubscribe1 You would set this command repeatedly for more than one unsubscribing topic. Please set this command before you set the unsubscribing topic if you want to unsubscribe more than one topic. SIMCom_3G_MQTT_Application Note _V1.00 5

12 +CMQTTUNSUBTOPIC: 0,0 AT+CMQTTUNSUB=0 +CMQTTUNSUB: 0,0 Unsubscribe topics unsubscribe and unsubscribe1 which be set by AT+CMQTTUNSUBTOPIC The max input length of unsubscribe message. 3.8 Disconnect You could send DISCONNECT message to MQTT server and the acquired client resource is remained after the client is connected with MQTT server. You could send CONNECT message again when you want to connect with MQTT server again. When client disconnect passively, URC +CMQTTCONNLOST will be reported, then user need to connect MQTT server again Disconnect actively AT+CMQTTDISC=0,120 Disconnect client index-0 with MQTT server. Timeout is 120s for disconnection Disconnect passively <CR><LF>+CMQTTCONNLOST: <client_index>,<cause><cr><lf> When client disconnect passively, URC +CMQTTCONNLOST will be reported, then user need to connect MQTT server again. Please refer to document [1] 3.9 Release client resource You should release one client resource after sending DISCONNECT message to MQTT server or the client is disconnected passively. AT+CMQTTREL=0 Release the resource of client index-0. SIMCom_3G_MQTT_Application Note _V1.00 6

13 4 Result code <result> The result of cmd. 0 net open successful. 1 failed. 2 bad UTF-8 string. 3 sock connect fail. 4 sock create fail. 5 sock close fail. 6 message receive fail. 7 network open fail. 8 network close fail. 9 network not opened. 10 client index error. 11 no connection. 12 invalid parameter. 13 not supported operation. 14 client is busy. 15 require connection fail. 16 sock sending fail. 17 timeout. 18 topic is empty. SIMCom_3G_MQTT_Application Note _V1.00 7

14 5 Complete Examples Example: connect AT+CMQTTSTART +CMQTTSTART: 0 AT+CMQTTACCQ=0,"client c" AT+CMQTTCONNECT=0,"tcp:// :5141",20,1 +CMQTTCONNECT: 0,0 AT+CMQTTDISC=0 +CMQTTDISC: 0,0 AT+CMQTTREL=0 AT+CMQTTSTOP=0 +CMQTTSTOP: 0 Example: connect with will topic AT+CMQTTSTART +CMQTTSTART: 0 AT+CMQTTACCQ=0,"client c" AT+CMQTTWILLTOPIC=0,10 >will topic AT+CMQTTWILLMSG=0,56,1 >you d better set will topic before setting will message. AT+CMQTTCONNECT=0,"tcp:// :5141",20,1, username, password +CMQTTCONNECT: 0,0 AT+CMQTTDISC=0

15 +CMQTTDISC: 0,0 AT+CMQTTREL=0 AT+CMQTTSTOP=0 +CMQTTSTOP: 0 Example: publish topic AT+CMQTTSTART +CMQTTSTART: 0 AT+CMQTTACCQ=0,"client c" AT+CMQTTWILLTOPIC=0,10 >will topic AT+CMQTTWILLMSG=0,56,1 >you d better set will topic before setting will message. AT+CMQTTCONNECT=0,"tcp:// :5141",20,1, username, password +CMQTTCONNECT: 0,0 AT+CMQTTTOPIC=0,13 >publish topic AT+CMQTTPAYLOAD=0,62 >you d better set publish topic before setting publish message. AT+CMQTTPUB=0,1,60 +CMQTTPUB: 0,0 AT+CMQTTDISC=0 +CMQTTDISC: 0,0 AT+CMQTTREL=0 AT+CMQTTSTOP=0 SIMCom_3G_MQTT_Application Note _V1.00 2

16 +CMQTTSTOP: 0 Example: subscribe and unsubscribe AT+CMQTTSTART +CMQTTSTART: 0 AT+CMQTTACCQ=0,"client c" AT+CMQTTWILLTOPIC=0,10 >will topic AT+CMQTTWILLMSG=0,56,1 >you d better set will topic before setting will message. AT+CMQTTCONNECT=0,"tcp:// :5141",20,1, username, password +CMQTTCONNECT: 0,0 AT+CMQTTSUB=0,9,1 >subscribe +CMQTTSUB: 0,0 AT+CMQTTUNSUB=0,9 >subscribe +CMQTTUNSUB: 0,0 AT+CMQTTDISC=0 +CMQTTDISC: 0,0 AT+CMQTTREL=0 AT+CMQTTSTOP=0 +CMQTTSTOP: 0 SIMCom_3G_MQTT_Application Note _V1.00 3

17 Appendix A Related Documents SN Document name Remark [1] SIMCOM_SIM5320_ATC_EN_V1.31.doc [2] MQTT_V3.1_Protocol_Specific.pdf B Terms and Abbreviations Abbreviation MQTT MQ Telemetry Transport SIMCom_3G_MQTT_Application Note _V1.00 4

18 Contact us: Shanghai SIMCom Wireless Solutions Co.,Ltd. Address: Building A, SIM Technology Building, No. 633, Jinzhong Road, Shanghai, P. R. China Tel: Fax: URL: SIMCom_3G_MQTT_Application Note _V1.00 5

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

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

SIM7100_SIM7500_SIM7600 LBS_Application Note_V1.00

SIM7100_SIM7500_SIM7600 LBS_Application Note_V1.00 SIM7100_SIM7500_SIM7600 LBS_Application Note_V1.00 Series SIM7100_SIM7500_SIM7600 Series LBS_Application Note_V1.00 1 2017-09-26 Document Title: SIM7100_SIM7500_SIM7600 Series LBS_Application Note Version:

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

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

SIMCom_3G_Linux_Driver_Applica tion Note_V1.00

SIMCom_3G_Linux_Driver_Applica tion Note_V1.00 _Applica tion Note_V1.00 Document Title: _Application Note Version: 1.00 Date: 2013-12-25 Status: Document Control ID: Release _Application Note_V1.00 General Notes SIMCom offers this information as a

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

UART. SIM5360 UART Multiplexer Application Note. SIM5360_UART_Multiplexer_Application_Note_V

UART. SIM5360 UART Multiplexer Application Note. SIM5360_UART_Multiplexer_Application_Note_V UART SIM5360 UART Multiplexer Application Note 1 Document Title: SIM5360 UART Multiplexer Application Note Version: 0.01 Date: 2014-05-30 Status: Document Control ID: Release SIM5360_UART_Multiplexer_Application_Note_V0.01

More information

SIM7000 Series_NTP_Application Note_V1.00

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

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

AT Commands Set SIM20_ATC_V1.02

AT Commands Set SIM20_ATC_V1.02 AT Commands Set SIM20_ATC_V1.02 Document Title: SIM20 SRD AT Command Set Version: 1.02 Date: 2010/1/10 Status: Document Control ID: Release SIM20_ATC_V1.02 General s SIMCOM offers this information as a

More information

Audio LINE-IN input application. AN_SIM900_Audio LINE-IN Input_V1.01

Audio LINE-IN input application. AN_SIM900_Audio LINE-IN Input_V1.01 Audio LINE-IN input application AN_SIM900_Audio LINE-IN Input_V1.01 Document Title: Audio LINE-IN input application Version: 1.01 Date: 2010-04-07 Status: Document Control ID: Release AN_SIM900_Audio LINE-IN

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

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

Delta Package Update Application Note

Delta Package Update Application Note Delta Package Update Application Note Document Title: SIM52xx Delta Package Update Application Note Version: 0.01 Date: 2011-06-22 Status: Document Control ID: Release SIM52xx_Delta_Package_Update_Application_Note_V0.01

More information

UART Application Note

UART Application Note UART Application Note Document Title: SIM52xx Application Note Version: 0.01 Date: 2011-06-22 Status: Document Control ID: Release SIM52xx Application_Note_V0.01 General Notes Simcom offers this information

More information

BC95-G&BC68 MQTT Application Note

BC95-G&BC68 MQTT Application Note BC95-G&BC68 MQTT Application Note Rev. BC95-G&BC68_MQTT_Application_Note_V1.0 Date: 2018-09-06 Status: Released www.quectel.com Our aim is to provide customers with timely and comprehensive service. For

More information

SIMCom_3G_CSD_Application Note_V1.00

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

More information

SIM800H&L_ Secondary Reflow SMT _Guidelines_V1.00

SIM800H&L_ Secondary Reflow SMT _Guidelines_V1.00 SIM800H&L_ Secondary Reflow SMT _Guidelines_V1.00 Document Title: SIM800H&L_ Secondary Reflow SMT_Guidelines Version: 1.00 Date: 2013-08-30 Status: Document Control ID: Release SIM800H&L_ Secondary Reflow

More information

SIM5360_GPIO_Demo Note_V1.00

SIM5360_GPIO_Demo Note_V1.00 SIM5360_GPIO_Demo Note_V1.00 Document Title: SIM5360 BMP Demo GPIO Note Version: 1.00 Date: 2013-12-13 Status: Document Control ID: Release General Notes SIMCom offers this information as a service to

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

SIM7X00 Series_SAT_Application Note_V1.00

SIM7X00 Series_SAT_Application Note_V1.00 SIM7X00 Series_SAT_Application Note_V1.00 Document Title: SIM7X00 Series_SAT_Application Note Version: 1.00 Date: 2016-07-12 Status: Document ID: Release SIM7X00 Series_SAT_Application Note_V1.00 General

More information

QuecLocator AT Commands Manual

QuecLocator AT Commands Manual QuecLocator AT Commands Manual UMTS/HSPA Module Series Rev. QuecLocator_AT_Commands_Manual_V1.0 Date: 2014-10-28 www.quectel.com Our aim is to provide customers with timely and comprehensive service. For

More information

SIM900_DTMF EmbeddedAT Application Note_V1.01

SIM900_DTMF EmbeddedAT Application Note_V1.01 SIM900_DTMF EmbeddedAT Application Note_V1.01 Document Title: SIM900_DTMF Embedded AT Application Note Version: 1.01 Date: 2012-02-07 Status: Document Control ID: Release SIM900_DTMF Embedded AT_Application

More information

UART Dload Application Note

UART Dload Application Note UART Dload Application Note Document Title: SIM52xx UART Dload Application Note Version: 0.02 Date: 2013-02-26 Status: Document Control ID: Release SIM52xx_UART_Dload_Application_Note_V0.02 General Notes

More information

SIM5360 Network Cell Info Application Note

SIM5360 Network Cell Info Application Note SIM5360 Network Cell Info Application Note Document Title: SIM5360 Network Cell Info Application Note Version: 0.01 Date: 2014-05-30 Status: Document ID: Release SIM5360_Network_Cell_Info_Application_Note_V0.01

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

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

Smart Machine Smart Decision. R700_User Guide_V1.05 1

Smart Machine Smart Decision. R700_User Guide_V1.05 1 R700_User Guide_V1.05 R700_User Guide_V1.05 1 Document Title R700_User Guide Version 1.05 Date Status Document Control ID Released R700_User Guide_V1.05 General Notes SIMCom offers this information as

More information

BG96 MQTT Application Note

BG96 MQTT Application Note BG96 MQTT Application Note LTE Module Series Rev. BG96_MQTT_Application_Note_V1.0 Date: 2018-01-04 Status: Released www.quectel.com Our aim is to provide customers with timely and comprehensive service.

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

SIM7100 Network Cell Info Application Note

SIM7100 Network Cell Info Application Note Network Cell Info Application Note Document Title: SIM7100 Version: 0.01 Date: 2015-02-10 Status: Document ID: Release SIM7100_Network_Cell_Info_Application_Note_V0.01 General Notes SIMCom offers this

More information

SIMCom_3G_PCM_Application Note_V1.04

SIMCom_3G_PCM_Application Note_V1.04 SIMCom_3G_PCM_Application Note_V1.04 Document Title: SIMCom_3G_PCM_Application Note Version: 1.04 Date: Status: Document Control ID: Release SIMCom_3G_PCM_Application Note _V1.04 General Notes SIMCom offers

More information

SIMCOM WCDMA Wireless Module. xx_sleep_mode_application_note

SIMCOM WCDMA Wireless Module. xx_sleep_mode_application_note SIMCOM WCDMA Wireless Module SIM5xxx_Sleep_ xx_sleep_mode_application_note Document Title: SIM5xxx_ Sleep_Mode _Application_Note Version: 1.02 Date: 2011-08-16 Status: Document Control ID: Release AN SIM5xxx_Sleep_Mode_Application_Note_V1.02

More information

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

SIM900 AMR File Playing Application Note_V1.01

SIM900 AMR File Playing Application Note_V1.01 SIM900 AMR File Playing Application _V1.01 Document Title: SIM900 AMR File Playing Application Version: 1.01 Date: 2012-11-08 Status: Document Control ID: Release SIM900_AMR File Playing_Application _V1.01

More information

SIM800 Series_FS_Application Note_V1.01

SIM800 Series_FS_Application Note_V1.01 SIM800 Series_FS_Application _V1.01 Document Title SIM800 Series_FS_Application Version 1.01 Date Status Document Control ID Release SIM800 Series_FS_ Application _V1.01 General s SIMCom offers this infmation

More information

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM Module Firmware Upgrade User Guide for Production GSM_Module_FW_Upgrade_ User_Guide_for_Production_V1.0 Document Title GSM Module Firmware Upgrade User Guide for Production Version

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

UART Application Note. SIM5XXX UART Application Note 1

UART Application Note. SIM5XXX UART Application Note 1 UART Application Note SIM5XXX UART Application Note 1 Document Title: SIM5XXX UART Application Note Version: 0.02 Date: 2013-02-26 Status: Document Control ID: Release SIM5XXX_UART_Application_Note_V0.02

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

How to use the SIM7100 Module in Linux

How to use the SIM7100 Module in Linux How to use the SIM7100 Module in Linux Document Title: Version: 1.0 Date: 2014-9-2 Status: Document Control ID: Release V1.0 General Notes SIMCom offers this information as a service to its customers,

More information

SIM900_Multiplexer Manual_Application Note_V1.3

SIM900_Multiplexer Manual_Application Note_V1.3 SIM900_Multiplexer Manual_Application Note_V1.3 User Document Title: SIM900 Multiplexer User Manual Application Note Version: 1.3 Date: 2010-11-17 10Status: Document Control ID: Released SIM900_Multiplexer

More information

SIMCom_SIM800H_EAT_flash_Tool _User Manual_V1.01

SIMCom_SIM800H_EAT_flash_Tool _User Manual_V1.01 SIMCom_SIM800H_EAT_flash_Tool _User Manual_V1.01 Document Title: SIMCom_SIM800H_EAT_flash_Tool_User Manual Version: 1.01 Date: 2013-08-27 10Status: Document Control ID: Draft AN_SIMCom_SIM800H_EAT_flash_Tool_App

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

SIM20_AT Command Manual_V1.04

SIM20_AT Command Manual_V1.04 SIM20_AT Manual_V1.04 Command Document Title: SIM20 AT Command Manual Version: 1.04 Date: 2010-08-30 Status: Document Control ID: Release SIM20_AT Command Manual_V1.04 General s SIMCom offers this information

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

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

GPS Application Note

GPS Application Note Document Title: GPS Application Note Version: 1.00 Date: 2010-04-29 Status: Document ID: Release SIM52xx_GPS_Application_Note_V1.00 General Notes SIMCom offers this information as a service to its customers,

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

SIM28_EVB kit_user Guide_V1.02

SIM28_EVB kit_user Guide_V1.02 SIM28_EVB kit_user Guide_V1.02 Document Title: Version: 1.02 Date: 2012-03-30 Status: Document Control ID: Release SIM28_EVB Kit_User Guide_V1.02 General Notes SIMCom offers this information as a service

More information

SIM5350_EVM_User_Guide _V1.00

SIM5350_EVM_User_Guide _V1.00 SIM5350_EVM_User_Guide _V1.00 Document Title: SIM5350_EVM_User_Guide Version: 1.00 Date: Status: Document Control ID: Release SIM5350_EVM_User_Guide_V1.00 General Notes SIMCom offers this information as

More information

Firmware Upgrade Tool Lite User Guide. Firmware_Upgrade_Tool_Lite_V1.1

Firmware Upgrade Tool Lite User Guide. Firmware_Upgrade_Tool_Lite_V1.1 Firmware Upgrade Tool Lite User Guide Firmware_Upgrade_Tool_Lite_V1.1 Document Title Firmware Upgrade Tool Lite User Guide Version 1.1 Date 2010-12-24 Status Document Control ID Release Firmware_Upgrade_Tool_Lite_V1.1

More information

SIM5360_ECALL_Application Note_V0.04

SIM5360_ECALL_Application Note_V0.04 SIM5360_ECALL_Application Note_V0.04 Document Title: SIM5360 Ecall Application Note Version: 0.04 Date: Status: Document Control ID: Release SIM5360_Ecall_Application Note _V0.04 General Notes SIMCom offers

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

SIM800H&L_EVM_User Guide _V1.00

SIM800H&L_EVM_User Guide _V1.00 SIM800H&L_EVM_User Guide _V1.00 Document Title: SIM800H&L_EVM_User Guide Version: 1.00 Date: Status: Document Control ID: Release SIM800H&L_EVM_User Guide_V1.00 General Notes SIMCom offers this information

More information

SIM7100 GPS Application Note

SIM7100 GPS Application Note Document Title: SIM7100 GPS Application Note Version: 0.01 Date: 2015-02-10 Status: Document ID: Release SIM7100_GPS_Application_Note_V0.01 General Notes SIMCom offers this information as a service to

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

SIMCOM WCDMA Wireless Module SIM5xxx PCM Application Note

SIMCOM WCDMA Wireless Module SIM5xxx PCM Application Note SIMCOM WCDMA Wireless Module SIM5xxx PCM Application Note Document Title: SIM5xxx PCM Application Note Version: 1.03 Date: 2011-08-26 Status: Document Control ID: Release AN_ SIM5xxx PCM Application Note

More information

Development Kit Manual SIM900D-EVB_UGD_V1.01

Development Kit Manual SIM900D-EVB_UGD_V1.01 Development Kit Manual SIM900D-EVB_UGD_V1.01 Document Title: SIM900D EVB User Guide Version: 1.01 Date: 2010-7-1 Status: Document Control ID: Release SIM900D-EVB_UGD_V1.01 General Notes Simcom offers this

More information

SIM7100 TTS Application Note

SIM7100 TTS Application Note SIM7100 TTS Application Note Document Title: SIM7100 TTS Application Note Version: 0.01 Date: 2015-06-15 Status: Document ID: Release SIM7100_TTS_Application_Note_V0.01 General Notes SIMCom offers this

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

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

How to use Linux driver

How to use Linux driver How to use Linux driver - 1 - Document Title: How to use Linux driver Version: 1.2 Date: 2015-12-23 Status: Author Release aaron General Notes SIMCom offers this information as a service to its customers,

More information

Development Kit Manual SIM305-EVB_UGD_V1.01

Development Kit Manual SIM305-EVB_UGD_V1.01 Development Kit Manual SIM305-EVB_UGD_V1.01 Document Title: SIM305 EVB User Guide Version: 1.01 Date: 2007-09-30 Status: Document Control ID: Release SIM305-EVB_UGD_V1.01 General Notes SIMCom offers this

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

SIM5360 BMP Demo Basic Datanet Working Note V1.00

SIM5360 BMP Demo Basic Datanet Working Note V1.00 SIM5360 BMP Demo Basic Datanet Working Note V1.00 Document Title: SIM5360 BMP Demo Basic Datanet Working Note Version: 1.00 Date: 2013-12-11 Status: Document Control ID: Release General Notes SIMCom offers

More information

Development Kit Manual. SIM908 EVB kit_user Guide_V1.00

Development Kit Manual. SIM908 EVB kit_user Guide_V1.00 Development Kit Manual SIM908 EVB kit_user Guide_V1.00 Document Title: Version: 1.00 Date: 2011-08-15 Status: Document Control ID: Release SIM900_EVB kit_user Guide_V1.00 General Notes SIMCom offers this

More information

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM SMTP AT Commands Manual GSM_SMTP_AT_Commands_Manual_V1.1 Document Title GSM SMTP AT Commands Manual Version 1.1 Date 2010-12-28 Status Document Control ID Release GSM_SMTP_AT_Commands_Manual_V1.1

More information

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM SMTP AT Commands GSM_SMTP_ATC_V1.2 Document Title GSM SMTP AT Commands Version 1.2 Date 2015-04-08 Status Document Control ID Release GSM_SMTP_ATC_V1.2 General Notes offers this information

More information

GSM Recording AT Commands Manual

GSM Recording AT Commands Manual GSM Recording AT Commands Manual GSM/GPRS Module Series Rev. GSM_Recording_AT_Commands_Manual_V3.0 Date: 2012-12-07 www.quectel.com Our aim is to provide customers with timely and comprehensive service.

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

SIM800H_ Secondary Reflow SMT Guidelines _V1.01

SIM800H_ Secondary Reflow SMT Guidelines _V1.01 SIM800H_ Secondary Reflow SMT Guidelines _V1.01 Document Title: SIM800H_ Secondary Reflow SMT Guidelines Version: 1.01 Date: 2014-5-6 Status: Release Document Control ID: SIM800H_ Secondary Reflow SMT

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

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine Hand Soldering LGA Module User Guide Hand_Soldering_LGA_Module_User_Guide_V1.0 Hand_Soldering_LGA_Module_User_Guide_V1.0-0 - Document Title Hand Soldering LGA Module User Guide Revision

More information

VL3000 Manager Tool User Guide V1.05

VL3000 Manager Tool User Guide V1.05 VL3000 Manager Tool User Guide V1.05 Document Title VL3000 Manager Tool User Guide Version 1.00 Date 2013-07-11 Status Release Document Control ID General Notes SIMCom offers this information as a service

More information

WCDMA Audio Player Application Note

WCDMA Audio Player Application Note WCDMA Audio Player Application Note UMTS/HSPA Module Series Rev. WCDMA_Audio_Player_Application_Note_V1.0 Date: 2015-09-07 www.quectel.com Our aim is to provide customers with timely and comprehensive

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

Realtek MQTT User Guide. This document provides guideline to use MQTT module in SDK.

Realtek MQTT User Guide. This document provides guideline to use MQTT module in SDK. Realtek MQTT User Guide This document provides guideline to use MQTT module in SDK. Table of Contents 1 MQTT Protocol Introduction... 3 1.1 Message format... 3 1.2 Connect and Keep Alive... 4 1.3 Publish...

More information

MQTT MQ TELEMETRY TRANSPORT. AN INTRODUCTION TO MQTT, A PROTOCOL FOR M2M AND IoT APPLICATIONS. Peter R. Egli INDIGOO.COM. indigoo.com. 1/33 Rev. 1.

MQTT MQ TELEMETRY TRANSPORT. AN INTRODUCTION TO MQTT, A PROTOCOL FOR M2M AND IoT APPLICATIONS. Peter R. Egli INDIGOO.COM. indigoo.com. 1/33 Rev. 1. MQTT MQ Telemetry MQTT Transport MQ TELEMETRY TRANSPORT AN INTRODUCTION TO MQTT, A PROTOCOL FOR M2M AND IoT APPLICATIONS Peter R. Egli INDIGOO.COM 1/33 Contents 1. What is MQTT? 2. MQTT characteristics

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

GSM/GPRS/GPS Tracker GL300 User Manual

GSM/GPRS/GPS Tracker GL300 User Manual GSM/GPRS/GPS Tracker GL300 User Manual TRACGL300UM001 Revision: Draft http://www.queclink.com sales@queclink.com Document Title Version GL300 User manual Draft Date 2013-04-18 Status Document Control ID

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

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

GSM/GPRS/GPS Tracker GL300 User Manual

GSM/GPRS/GPS Tracker GL300 User Manual GSM/GPRS/GPS Tracker GL300 User Manual TRACGL300UM001 Revision: 1.01 http://www.queclink.com sales@queclink.com Document Title GL300 User Manual Version 1.01 Date 2014-05-09 Status Document Control ID

More information

Development Kit Manual. SIM5360_EVB_User Guide_V1.02

Development Kit Manual. SIM5360_EVB_User Guide_V1.02 Development Kit Manual SIM5360_EVB_User Guide_V1.02 Document Title: SIM5360 EVB User Guide Version: 1.02 Date: 2014-03-18 Status: Document Control ID: Release SIM5360_EVB_User Guide_V1.01 General Notes

More information

UC20 Linux USB Driver User Guide

UC20 Linux USB Driver User Guide UC20 Linux USB Driver User Guide UMTS/HSPA Module Series Rev. UC20_Linux_USB_Driver_User_Guide_V1.0 Date: 2013-06-09 www.quectel.com Our aim is to provide customers with timely and comprehensive service.

More information

Enduro Plus 3G USER MANUAL. TrackingTheWorld.com. Multi-purpose Tracking Device

Enduro Plus 3G USER MANUAL. TrackingTheWorld.com. Multi-purpose Tracking Device TrackingTheWorld.com Enduro Plus 3G Multi-purpose Tracking Device USER MANUAL Document Title Enduro Plus 3G User manual Version 1.00 Date 2015-5-25 Status Document Control ID Release TTW-EnduroPlus3G-UM001

More information

UC20 Android RIL Driver User Guide

UC20 Android RIL Driver User Guide UC20 Android RIL Driver User Guide UMTS/HSPA Module Series Rev. UC20_Android_RIL_Driver_User_Guide_V1.0 Date: 2013-06-18 www.quectel.com Our aim is to provide customers with timely and comprehensive service.

More information

M10-TE-A. Quectel Cellular Engine. Hardware Design M10-TE-A_HD_V1.01

M10-TE-A. Quectel Cellular Engine. Hardware Design M10-TE-A_HD_V1.01 M10-TE-A Cellular Engine Hardware Design M10-TE-A_HD_V1.01 Document Title M10-TE-A Hardware Design Version 1.01 Date 2009-10-26 Status Document Control ID Release M10-TE-A_HD_V1.01 General Notes offers

More information

SIM900 Reference Design Guide. SIM900_AN_ Reference Design Guide_V1.01

SIM900 Reference Design Guide. SIM900_AN_ Reference Design Guide_V1.01 SIM900 Reference Design Guide SIM900_AN_ Reference Design Guide_V1.01 Document Title: SIM900 Reference Design Guide Version: 1.01 Date: 2010-01-27 10Status: Document Control ID: Released SIM900_AN_ Reference

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

MQTT Client Driver PTC Inc. All Rights Reserved.

MQTT Client Driver PTC Inc. All Rights Reserved. 2017 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 4 Overview 5 Setup 6 Channel Properties General 6 Channel Properties Advanced 7 Channel Properties Connection 7 Channel Properties

More information

GSM. Quectel Cellular Engine. GSM FILE AT Commands GSM_FILE _ATC_V1.4

GSM. Quectel Cellular Engine. GSM FILE AT Commands GSM_FILE _ATC_V1.4 GSM Cellular Engine GSM FILE AT Commands GSM_FILE _ATC_V1.4 Document Title GSM FILE AT Commands Version 1.4 Date 2012-06-13 Status Released Document Control ID GSM_FILE _ATC_V1.4 General Notes offers this

More information

UC20 WinCE USB Driver

UC20 WinCE USB Driver UC20 WinCE USB Driver User Guide UMTS/HSPA Module Series Rev. UC20_WinCE_USB_Driver_User_Guide_V1.0 Date: 2013-08-12 www.quectel.com Our aim is to provide customers with timely and comprehensive service.

More information

Mini PCIe_EVB kit_ User Guide_V1.00

Mini PCIe_EVB kit_ User Guide_V1.00 Mini PCIe_EVB kit_ User Guide_V1.00 Document Title: Mini PCIe EVB kit User Guide Version: 1.00 Date: 2014-05-05 Status: Document Control ID: Release Mini PCIe _EVB kit_user Guide_V1.00 General Notes SIMCom

More information

GSM Audio Player Application Note

GSM Audio Player Application Note GSM Audio Player Application Note GSM/GPRS Module Series Rev. GSM_Audio_Player_Application_Note_V3.1 Date: 2013-04-24 www.quectel.com Our aim is to provide customers with timely and comprehensive service.

More information

Advantech AE Technical Share Document

Advantech AE Technical Share Document Advantech AE Technical Share Document Date 2018/2/9 SR# 1-3358288537 Category FAQ SOP Related OS N/A Abstract How to set up ADAM-3600 or WebAccess MQTT connection with WebAccess Broker Keyword WebAccess,

More information

M95 Dual SIM Application Notes

M95 Dual SIM Application Notes M95 Dual SIM Application Notes GSM/GPRS Module Series Rev. 3.0 Date: 2013-01-29 www.quectel.com Our aim is to provide customers with timely and comprehensive service. For any assistance, please contact

More information

Cassia MQTT User Guide

Cassia MQTT User Guide Cassia MQTT User Guide Contents 1. Introduction... 2 1.1. Client and Broker... 2 1.2. MQTT Connection... 2 1.3. Cassia MQTT Bypass Mode... 3 2. Settings on MQTT Server/Broker... 4 2.1. Configuration Files...

More information