#include <SPI.h> #include <Ethernet.h> int led = 4; int pos = 0; byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; byte ip[] = { 192, 168, 0, 178 }; byte gateway[] = { 192, 168, 1, 1 }; byte subnet[] = { 255, 255, 255, 0 }; EthernetServer server(80); String readString; void setup() { Serial.begin(9600); while (!Serial) { ; } pinMode(led, OUTPUT); Ethernet.begin(mac, ip, gateway, subnet); server.begin(); Serial.print("server is at "); Serial.println(Ethernet.localIP()); } void loop() { EthernetClient client = server.available(); if (client) { while (client.connected()) { if (client.available()) { char c = client.read(); //read char by char HTTP request if (readString.length() < 100) { //store characters to string readString += c; //Serial.print(c); } //if HTTP request has ended if (c == '\n') { Serial.println(readString); client.println("<html>"); client.println("<head>"); client.println("<title>Login - Doorino</title>"); client.println("</head>"); client.println("<body>"); client.println("<center>"); client.println("<form method=get>"); client.println("<input type=text value=Password name=ids />"); client.println("<input type=submit value=Log-In />"); client.println("</form>"); client.println("</center>"); client.println("</body>"); client.println("</html>"); delay(1); client.stop(); if (readString.indexOf("?ids=113355") >0){ digitalWrite(led, HIGH); delay(1500); digitalWrite(led, LOW); } readString=""; } } } } }