Remove these ads by
Signing UpStep 1: Configure Web Server
#include <SPI.h>
#include <Ethernet.h>
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192,168,1, 177);
EthernetServer server(80);
void setup()
{
Serial.begin(9600);
pinMode(8, OUTPUT);
Ethernet.begin(mac, ip);
server.begin();
}




































Visit Our Store »
Go Pro Today »




I sure do, Next I will be setting up a web form to control relays. I will post it once i am finished.