Individually, we were assigned to design, build, and connect wired or wireless node(s) with network or bus addresses.
My goal was to build a websocket and use the ESP32 to serve the website for the connection to external devices. I found this page which described how to build websockets for the ESP32.
I also found this example code which was a great template for writing a website to server a websocket from the ESP32 through the Arduino IDE. It functioned with a toggle button which would talk to the ESP32 board, completing anyt binary function.
As can see on the previous site, WebSockets use TCP connection which Neil described was not as optimal as UDP for real time data connection because of time latency. Although, my goal for the final project does use real time wireless data transfer, I thought it would be benificial to develop TCP first to see the connection upload rates. I will also attmept to build a UDP connection to compare which protocal will be the best option for my final project. This video is an incredibly easy way to understand the difference between the two data transfer methods.