Lesson2_LED WS Server ping noLib by hubacekp

Cloned from Sketch Lesson2_LED_WS_simpliest by hubacekp

This sketch is missing a short description

Implement a very basic WebSockets server using Ethernet Shield on Arduino Uno.
How to change default PORT 80 to custom PORT 51840?

change in file WebSocket.h:
int inPort = 80
to
int inPort = 51840

change in file clientwebpage.html:
var wsUri = "ws://192.168.1.184/";
to
var wsUri = "ws://192.168.1.184:51840/";

Embed This Sketch

Use the following HTML code to embed the sketch code above in your blog or website.

<iframe style="height: 510px; width: 100%; margin: 10px 0 10px;" allowTransparency="true" src="https://codebender.cc/embed/sketch:99083" frameborder="0"></iframe>

Embed The Serial Monitor

You can also embed the Serial Monitor section! Just use this HTML code.

<iframe style="height: 510px; width: 100%; margin: 10px 0 10px;" allowTransparency="true" src="https://codebender.cc/embed/serialmonitor" frameborder="0"></iframe>