tcp client
i'm using arduino uno , w5100 ethernet shield. i'm trying connect ethernet shield software downloaded ( sockettest v3.00) communication between server (sockettest) , shield (client).the shield jack connected router. created server under ip address of laptop. uses telnet client example can't connect server on sockettest. first time i'm doing tcp/ip , had done similar project or guide me on this. sockettest - http://sockettest.sourceforge.net/ uno - https://store.arduino.cc/arduino-uno-rev3 ethernet shield - http://www.hobbytronics.co.uk/arduino-wiznet-shield here code -------------------- code: [select] #include <spi.h> #include <ethernet.h> byte mac[] = { 0xde, 0xad, 0xbe, 0xef, 0xfe, 0xed }; ipaddress ip(192, 168, 1, 220);// shield ip ipaddress server(192, 168, 1, 37); // computer ip ethernetclient client; void setup() { // start ethernet connection: ethernet.begin(mac, ip);// open serial communications , wait port open: ...