This article is reprinted from the WeChat public account "Uncle Wheat", the author is Caidao and Xiaomai. Please contact Uncle Wheat's public account to reprint this article. Hello everyone, I am Xiaomai. I recently worked on an IoT project and I would like to share with you the MQTT protocol. As we all know, the MQTT protocol is very commonly used in IoT. If you don’t know much about it, I believe this article can help you get started.
MQTT protocolMQTT (Message Queuing Telemetry Transport) is a "lightweight" communication protocol based on the publish/subscribe model. The protocol is built on the TCP/IP protocol and was released by IBM in 1999. The biggest advantage of MQTT is that it provides real-time and reliable message services for connecting remote devices with very little code and limited bandwidth. As an instant messaging protocol with low overhead and low bandwidth usage, it is widely used in the Internet of Things, small devices, mobile applications, etc. 1. Characteristics of MQTT protocolMQTT is a client-server based publish/subscribe messaging protocol. The MQTT protocol is lightweight, simple, open, and easy to implement, making it applicable to a wide range of situations, including constrained environments such as machine-to-machine (M2M) communications and the Internet of Things (IoT). It is widely used in sensors that communicate via satellite links, medical devices that occasionally dial up, smart homes, and some miniaturized devices. The current version of the MQTT protocol is MQTT v3.1.1, which was released in 2014. In addition to the standard version, there is also a simplified version, MQTT-SN, which is mainly aimed at embedded devices that generally work on TCP/IP networks, such as ZigBee. MQTT Like HTTP, MQTT runs on top of the Transmission Control Protocol/Internet Protocol (TCP/IP) stack. MQTT OSI Publish and SubscribeMQTT uses the publish/subscribe messaging model, which provides a one-to-many message distribution mechanism, thereby achieving decoupling from applications. This is a messaging mode where messages are not sent directly from sender to receiver (i.e. point-to-point), but are distributed by an MQTT server (or MQTT Broker). The MQTT server is the core of the publish-subscribe architecture. It can be implemented very simply on a single-board computer like a Raspberry Pi or NAS, but it can also be implemented on a mainframe or Internet server. The server distributes messages and therefore must be a publisher, but never a subscriber! Clients can publish messages (senders), subscribe to messages (receivers), or both. A client (also called a node) is an intelligent device such as a microcontroller or a computer with a TCP/IP stack and software that implements the MQTT protocol. Messages are published under topics that allow filtering. Topics are hierarchical UTF-8 strings. Different topic levels are separated by slashes /. Let's take a look at the setup below.
This is a simple MQTT application scenario, as shown in the following figure; MQTT Publish and Subscribe QoS (Quality of Service levels)Quality of service is an important feature of MQTT. When we use TCP/IP, the connection is already protected to a certain extent. But in wireless networks, interruptions and interference are frequent, and MQTT is here to help avoid information loss with its quality of service levels. These levels are used when publishing. If a client publishes to an MQTT server, the client will be the sender and the MQTT server will be the receiver. When an MQTT server publishes a message to a client, the server is the sender and the client is the receiver. QoS 0 At this level, message loss or duplication may occur, and message publishing depends on the underlying TCP/IP network. That is: <= 1 QoS 1 QoS 1 promises that a message will be delivered at least once to a subscriber. QoS 2 With QoS 2, we guarantee that the message is delivered to the destination only once. To do this, the message with a unique message ID is stored twice, first from the sender and then by the receiver. QoS level 2 has the highest overhead in the network because two flows are required between the sender and the receiver. 2. MQTT data packet structure
The overall MQTT message format is shown in the figure below; 2.1 MQTT fixed headerThe fixed header is present in all MQTT packets and has the following structure: The following is a brief analysis of the fixed header message format; MQTT message type **Location:** byte 1, bits 7-4. A 4-bit unsigned value of the following type:
Flag/DUP **Location:** byte 1, bits 3-0. In message types that do not use the flag, the flag is reserved. If an invalid flag is received, the receiver must close the network connection:
1, then MessageId is added to the variable length below, and a reply confirmation is required to ensure that the message transmission is completed, but it cannot be used to detect repeated message sending.
Remaining Length Location: byte 1. The second byte of the fixed header is used to save the total size of the variable-length header and the message body, but it is not saved directly. This byte can be expanded. Its saving mechanism is that the first 7 bits are used to save the length, and the last bit is used as an identifier. When the last bit is 1, it means that the length is insufficient and two bytes are needed to continue saving. For example: the calculated size after is 0 2.2 MQTT variable headerThe MQTT data packet contains a variable header, which resides between the fixed header and the payload. The content of the variable header varies depending on the data packet type, and is often used as a packet identifier:
Many types of packets include a 2-byte packet identification field. These types of packets are: PUBLISH (QoS > 0), PUBACK, PUBREC, PUBREL, PUBCOMP, SUBSCRIBE, SUBACK, UNSUBSCRIBE, UNSUBACK 2.3 Payload message bodyThe Payload message body is the third part of the MQTT data packet. The four types of messages, CONNECT, SUBSCRIBE, SUBACK, and UNSUBSCRIBE, have message bodies: CONNECT, the message body mainly contains: ClientID, subscribed Topic, Message, and username and password SUBSCRIBE, the message body is a series of topics to be subscribed and QoS. SUBACK: The message body is the server's confirmation and response to the topic and QoS requested by SUBSCRIBE. UNSUBSCRIBE, the message body is the topic to be subscribed. 3. Environment ConstructionAfter introducing the basic theory, let's build a simple MQTT application on the Windows platform and perform a simple application. The overall architecture is shown in the figure below; [External link image transfer failed. The source site may have an anti-hotlink mechanism. It is recommended to save the image and upload it directly (img-ScRucIVO-1625480723109) (architecture diagram.png)] 3.1 MQTT server constructionCurrently, the mainstream platforms of MQTT agents are as follows:
This article will use Mosquitoo for testing. Go to the installation page and download the program that is compatible with your computer system. Download Page After successful installation, go to the installation path and find mosquitto.exe; [External link image transfer failed. The source site may have an anti-hotlink mechanism. It is recommended to save the image and upload it directly (img-YXZupgOv-1625480723111)(image-20210705171401654.png)] Hold down Shift, right-click a blank space, then open Powershell and open a terminal software normally;
The details are shown in the figure below; 3.2 MQTT ClientNow that the server is set up, the next step is to open the client and publish and subscribe so that the corresponding messages can be transmitted. Here I use a QT mqtt client program compiled by myself, which is compiled based on the official library of Qt. Let's open this software. In the next issue, I will briefly introduce how to complete this client and set the corresponding parameters:
Then subscribe to the topic and send data to each other, as shown in the following figure; Combined with the previous pictures, the overall architecture is as follows; 4. SummaryThis article briefly introduces the working principle of the MQTT protocol and the corresponding protocol format, briefly introduces some details of the protocol, and specifically cites the corresponding application scenarios. The author's level and ability are limited, and there are inevitably errors and omissions in the article. Please feel free to give me your advice. This episode ends here. I am Xiaomai. See you next time. |
<<: Network as a Service (NaaS) is the future trend
>>: COVID accelerates interest in 5G, digital transformation, and IoT
OneTechCloud is a VPS hosting business that focus...
According to foreign media, researchers from the ...
In recent years, the trend of "optical fiber...
5G is the latest generation of cellular network t...
[[394253]] Officials from China's Ministry of...
Preface The previous article "Whether it is ...
The "No-delay P2P" launched by Yunfan A...
[[188850]] The educational information of ordinar...
The State Council Executive Meeting reviewed and ...
The day before yesterday, we shared the news of R...
Hello everyone, I am Xiaozaojun. Today I would li...
[[343834]] I have tried According to statistics f...
Memory security is not a new concept, but the sur...
[[383115]] According to Gartner's latest fore...