UNIT MQTT is an Ethernet MQTT communication module with embedded W5500 Ethernet chip, UART communication interface (AT command control) and integrated RJ45 adaptive 10/100M network port. It also supports 4 Topics subscription with extremely low network latency, and is widely used in various industrial automation, security monitoring systems, automatic measurement and control systems, and equipment data on the cloud.
Specifications | Parameters |
---|---|
Module Processor | ARM Cortex-M3 |
Communication interface | UART: baud 9600bps 8N1 default |
MQTT | Support 4x Topic subscription, not support MQTTS |
Network port | RJ45 adaptive 10/100M network port |
Delay | Delay `10ms |
Standby working current | 40.4mA |
Net weight | 22.4g |
Gross weight | 27.2g |
Product size | 72 * 26 * 19 mm |
Packing size | 73 * 35 * 20 mm |
M5Core | TX(GPIO17) | RX(GPIO16) | VCC | GND |
---|---|---|---|---|
UNIT MQTT | RX | TX | VCC | GND |
\r\n
at the end of each commandAT+NETMAC=
MAC address``
//Example
AT+NETMAC=12-34-56-78-90-AB
+NETMAC=OK
AT+NETSTATICIP=
IP address,
subnet mask,
gateway``
IP address
,subnet mask
,gateway
)
?Note: When the DHCP function is turned on, the static IP setting will not be enabled.
brIP address` (text), which means the local IP address, you can use the IP address or domain name`br
subnet mask (text), must be in IP address format
br``gateway`(text), must be in IP address format//Example
AT+NETSTATICIP="192.168.0.101","255.255.255.0","192.168.0.1"
+NETSTATICIP=OK
AT+NETDHCPEN=
1/0``
1/0``br
1: Enable DHCP functionbr
0: Disable DHCP function//Example
AT+NETDHCPEN=1
+NETDHCPEN=OK
AT+MQCLIENTID=
client name``
br``client name``br
(text) MQTT client name//使用示例
AT+MQCLIENTID="CLIENT ID"
+MQCLIENTID=OK
AT+MQKEEP=
heartbeat duration``
br``heartbeat time``br
The time interval for automatically sending PINGREQ packets, unit: second, range 5~300//Example
AT+MQKEEP=500
+MQKEEP=OK
AT+MQSUBSCRIBE=
subject serial number,
1/0,
subject name,
quality of service``
br
Subject Number
Numbers 1-4
br``1/0
1 Open the subscription of this topic, 0 Close the subscription of the changed topic, when the parameter is changed to 0, the latter two parameters must be emptybr``topic name
(text)quality of service
Must be one of 0, 1, 2//Example
AT+MQSUBSCRIBE=1,1,"sub",0
+MQSUBSCRIBE=OK
AT+MQSERVER=
server address,
server port``
br``server address``br
(text), you can use IP address or domain namebr``server port
number 0~65535//Example
AT+MQSERVER="xxx.mqttserver.com",1883
+MQSERVER=OK
AT+MQUSERPWD=
user name,
password``
br
set user name and password user name
(text) MQTT user namebr``password
(text) MQTT login password//Example
AT+MQUSERPWD="user","123456"
+MQUSERPWD=OK
AT+MQAUTO=
1/0``
br
Set whether to directly connect to the server when powering on.br``1/0
0: Do not directly start the connection when powering on, 1: Start the connection directly according to the configured parameters when powering on//Example
AT+MQAUTO=1
+MQAUTO=OK
AT+MQRESETCFG
br
//Example
AT+MQRESETCFG
+MQRESETCFG=OK
AT+MQPUBLISH=
topic,
message,
quality of service``
br``subject
(text), the subject name of the message to be publishedbr``message
(text), the message to be published, the maximum allowed length of this parameter is 1000br
Quality of Service
QOS, must be 0,1,2, you can choose not to send this parameter, at this time QOS is 0AT+BAUD=
Baud rate``
br``baud rate
The baud rate can only be the following values/4800/9600/19200/34800/115200/230400//Example
AT+BAUD=115200
+BAUD=OK
AT+SAVE
After configuring the MQTT parameters, you need to execute the SAVE command, and perform a RESET soft reset, the configuration will take effect
//Example
AT+SAVE
+SAVE=OK
AT+RESET
After configuring the MQTT parameters, you need to execute the SAVE command, and perform a RESET soft reset, the configuration will take effect
//Example
AT+RESET
+RESET=OK
AT
//Example
AT
AT
AT+MQSUBSCRIBE=
subject serial number?
topic number
,on/off
,topic name
,service quality level``br``topic number
can only be 1~4 One of the br``on/off
is 1 when the current subscription is on, and 0 means when the subscription is invalid.br``topic name``service level quality
can only be 0,1,2, one of which means MQTT service QOS0, QOS1, QOS2 in quality//Example
AT+MQSUBSCRIBE=1?
+MQSUBSCRIBE=OK:1,1,"/topic",0
AT+MQAUTO?
on/off
0: Do not start the connection directly when powering on, 1: Start the connection directly according to the configured parameters when powering on//Example
AT+MQAUTO?
+MQAUTO=OK:1
AT+NETMAC?
MAC address
The format is: XX-XX-XX-XX-XX-XX//Example
AT+NETMAC?
+NETMAC=OK:12-34-56-78-90-AB
AT+NETSTATICIP?
static IP address
,subnet mask
,gateway
//Example
AT+NETSTATICIP?
+NETSTATICIP=OK:"192.168.1.2","255.255.255.0","192.168.1.1"
AT+NETDHCPEN?
start/disable
1: Enable the DHCP function, 0: Disable the DHCP function//Example
AT+NETDHCPEN?
+NETDHCPEN=OK:1
AT+MQCLIENTID?
client IP
//Example
AT+MQCLIENTID?
+MQCLIENTID=OK:"clientID"
AT+MQSERVER?
server address
,server port number
//Example
AT+MQSERVER?
+MQSERVER=OK:"192.168.1.55",1883
AT+MQUSERPWD?
username
,password
//Example
AT+MQUSERPWD?
+MQUSERPWD=OK:"USER","123456"
AT+MQKEEP?
heartbeat interval
//Example
AT+MQKEEP?
+MQKEEP=OK:60
AT+BAUD?
baud rate
The default baud rate is 9600//Example
AT+BAUD?
+BAUD=OK:9600
AT+VERSION?
current firmware version number
//Example
AT+VERSION?
+VERSION=OK:1.0
AT+MQSTATUS?
br
Response: +MQSTATUS=OK:connection status
//Example
AT+MQSTATUS?
+MQSTATUS=OK:1
AT+NETIP?
br
Response: +NETIP=OK:IP address
,subnet mask
,gateway
,DNS server address
//Example
AT+NETIP?
+NETIP=OK:"192.168.2.121","255.255.255.0","192.168.2.1","192.168.2.1"
//The network is not connected
+NETUNCONNECT
//MQTT server is not connected
+MQUNCONNECT
//Successful connection with MQTT server
+MQCONNECT
//Received topic message
+MQRECV:`subject`,`length`,`message`
//Parameter content error
ERROR:Error Param
//The number of parameters does not meet the requirements
ERROR:Error Param Num
//The length of the parameter is too long, and each parameter field requires less than 128 bytes (the maximum length of the published message is 1000 bytes)
ERROR: Parma is too long
//Failed to connect to the network
ERROR:Unconnected
//MQTT server communication error
ERROR: MQTT Connect Fail
//The server did not respond when publishing the message (Qos1 and Qos2)
ERROR: MQTT Publish Fail