MQTT Over QUIC: The Next-Gen IoT Messaging Protocol

MQTT Over QUIC: The Next-Gen IoT Messaging Protocol

Why MQTT over QUIC is the next generation standard protocol for IoT messaging and how it will empower IoT scenarios. What is the QUIC Protocol? QUIC (Quick UDP Internet Connections) is a transport layer protocol developed by Google that is based on the User Datagram Protocol (UDP), designed to improve the speed and reliability of … Read more

Wireless Control of ESP32CAM via Mobile App (UDP Communication)

Wireless Control of ESP32CAM via Mobile App (UDP Communication)

The mobile app acts as the master, while the ESP32CAM serves as the slave. The mobile app receives image data uploaded by the ESP32CAM and sends control commands to the ESP32CAM. 01 — ESP32CAM Program Design The development environment for the ESP32CAM program is Arduino, and the steps to be completed are as follows. 1. … Read more

ESP32C3 UDP Data Transmission

ESP32C3 UDP Data Transmission

The battery compartment for the remote-controlled plane has been designed and sent for sampling; however, the cockpit is not yet completed. Let’s first work on the remote control and data transmission. This article mainly introduces the UDP data transmission of ESP32C3, where ESP32C3 acts as a UDP server operating in AP mode. First, here is … Read more

Creating a Wake-On-LAN Device with .Net nanoFramework

Creating a Wake-On-LAN Device with .Net nanoFramework

This article will introduce how to create a wake-on-LAN device using ESP32 hardware and implement the WOL (Wake-on-LAN) function through .Net nanoFramework, sending WOL packets to wake up remote computers. 1. Background In previous articles, we introduced how to use libraries related to .Net nanoFramework to achieve various functions, such as reading sensor data, controlling … Read more

Raspberry Pi – Tutorial for Implementing UDP Transmission with Qt

Raspberry Pi - Tutorial for Implementing UDP Transmission with Qt

What is UDP My personal understanding of UP is a connectionless protocol. Before transmitting data, the receiving and sending ends do not establish a connection. When it wants to send, it simply grabs the data from the application and throws it onto the network as quickly as possible. Simple to use, fast, but does not … Read more

UDP Network Communication Between VxWorks 6.8 and Windows

UDP Network Communication Between VxWorks 6.8 and Windows

Click “Read the original text” to access more VxWorks resources Overview This article discusses the key points of UDP network communication between VxWorks 6.8 and Windows. Code Description On the Windows side, we ran a UDP server program named win_udpServer.ext, designed by vxbus.com. On the VxWorks 6.8 side, we designed a UDP client program code … Read more