ESP32CAM | Sending images via UDP?



ESP32CAM | Sending images via UDP?

ESP32CAM | Sending images via UDP?

Let’s say you need to transfer data over WiFi and you want to send a continuous file.
You can use WebSockets based on TCP or you can send via UDP.
The bottom line is that TCP has some overhead, but the data is reliable. UDP can send data faster, but the order of the data may not be sequential.
Let’s see how the two methods differ when sending a JPEG image from an ESP32CAM to another ESP32 device.

[ESP32-CAM Development Board]
https://amzn.to/3o6KPHk

[ESP32CAM Projects]
https://www.youtube.com/playlist?list=PLnq7JUnBumAxB6SH2-7QnqtmmFM3J8bUy

[Tic Tac Camera Using ESP32CAM And Wireless Charging]
https://youtu.be/hteut2R8eQ0

[[ESP32TTGO x ESP32CAM] Wi-Fi Direct! Output images of ESP32CAM to TTGO display. (ft. WebSocket)]
https://youtu.be/OdEmfRKDJts

[ESP32 LILY PI]
https://bit.ly/3CWzEG9

[Project Github]
https://github.com/0015/ThatProject/tree/master/ESP32CAM_Projects/ESP32_CAM_UDP

#ESP32CAM #UDP #WebSocket #ESP32 #ThatProject .

Comments are closed.