Minimal to use the Arduino as a web server and that is already in a sketch that you can use. You need to edit the code so it will work in your network. [code] #include <SPI.h> #include <Ethernet.h> /******************** ETHERNET SETTINGS ********************/ byte mac[] = { 0x90, 0xA2, 0xDA, 0x0D, 0x85, 0xD9 }; //physical mac address byte ip[] = { 192, 168, 0, 112 }; // ip in lan byte subnet[] = { 255, 255, 255, 0 }; //subnet mask byte gateway[] = { 192, 168, 0, 1 }; // default gateway EthernetServer server(80); //server port void setup() { Ethernet.begin(mac,ip,gateway,subnet); // initialize Ethernet device server.begin(); // start to listen for clients pinMode(8, INPUT); // input pin for switch } void loop() { EthernetClient client = server.available(); // look for the client /* a place for the code*/ dela...