UNIT MQTT PoE is an Ethernet MQTT communication module, supports PoE power and embedded W5500 Ethernet chip, as well as the UART communication interface (AT command control). The module is also equipped with an integrated RJ45 10 / 100 Mb network port, supports subscription of four topics (topic). With extremely low network latency and high stability, it is designed for industrial automation, security monitoring system, automation measurement, and equipment data on the cloud applications.
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 |
PoE power supply capability | 1.2A@5V(6W) / Voltage DC 37-57V |
Working current | 190mA |
Standby current | 130mA |
Net weight | 27.0g |
Gross weight | 34.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.<br>
IP 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 Command description: Enable/disable DHCP function 1/0
1: Enable DHCP function
0: Disable DHCP function
//Example
AT+NETDHCPEN=1
+NETDHCPEN=OK
AT+MQCLIENTID=
client name
client name
//使用示例
AT+MQCLIENTID="CLIENT ID"
+MQCLIENTID=OK
AT+MQKEEP=
heartbeat duration Command description: Set the length of the heartbeat time for connecting to the MQTT serverheartbeat time
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
Subject Number
Numbers 1-4 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 empty 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 Command description: Set the address and port number of the MQTT serverserver address
(text), you can use IP address or domain nameserver port
number 0~65535
//Example
AT+MQSERVER="xxx.mqttserver.com",1883
+MQSERVER=OK
AT+MQUSERPWD=
user name,password
user name
(text) MQTT user namepassword
(text) MQTT login password//Example
AT+MQUSERPWD="user","123456"
+MQUSERPWD=OK
AT+MQAUTO=
1/0
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
//Example
AT+MQRESETCFG
+MQRESETCFG=OK
AT+MQPUBLISH=
topic,message,quality of service
subject
(text), the subject name of the message to be publishedmessage
(text), the message to be published, the maximum allowed length of this parameter is 1000Quality 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
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
topic number
can only be 1~4 One of the on/off
is 1 when the current subscription is on, and 0 means when the subscription is invalid.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?
connection status
//Example
AT+MQSTATUS?
+MQSTATUS=OK:1
AT+NETIP?
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