Lo zipit Z1 e arduino

Allora, questo è il codice che ho "scritto" ma sul telnet non vedo nulla:

/*
 * Web Server
 *
 * A simple web server that shows the value of the analog input pins.
 */

#include <Ethernet.h>

byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = { 192, 168, 1, 4 };

Server server(23);

void setup()
{
  Ethernet.begin(mac, ip);
  server.begin();
}

void loop()
{
  Client client = server.available();
  if (client) {
    // an http request ends with a blank line
    boolean current_line_is_blank = true;
    while (client.connected()) {
      if (client.available()) {
      server.print("test");
        
      }
    }
    // give the web browser time to receive the data
    delay(1);
    client.stop();
  }
}[code]

[/code]