Build a private MQTT server under Windows to realize real-time image transmission between multiple devices

I. Introduction

Insert image description here

Insert image description here

Use EMQX to build your own private MQTT server under Windows to achieve real-time image transmission between multiple devices.

Two scenarios were tested:

[1] Image collection terminal: Collect the computer's own camera and upload it to the MQTT server through the MQTT protocol. The image display terminal subscribes to the topic of the collection terminal to obtain real-time image display.

[2] Device side: ESP32 + OV2640 collects images and uploads them to the MQTT server. The application side subscribes to the topic on the device side to obtain real-time image display.

[3] Device side: STM32F103 + OV7725 + ESP8266. Collect images and upload them to the MQTT server. The application side subscribes to the topic on the device side to obtain real-time image display.

[4] Device side: STM32F103 + OV7725 + 4G module. Collect images and upload them to the MQTT server. The application side subscribes to the topic on the device side to obtain real-time image display.

image-20231205151827555

If you want to build a private MQTT server under Linux, you can read here: https://blog.csdn.net/xiaolong1126626497/article/details/134290374

Guess you like

Origin blog.csdn.net/xiaolong1126626497/article/details/134808822