Hi
I have Mega 2560 PRO and Fundino (red) w5100. Im having problems with ISP comunnication (i think). If someone can help me i will be very happy
That is my wiering:
W5100 // Mega 2560 PRO
GND -----> GND
5V -----> 5V
SS -----> D10
MO -----> MISO (SPI)
MI -----> MOSI (SPI)
CK ------> SCK (SPI)
Test program:
#include <SPI.h>
#include <Ethernet.h>
byte mac[] = {Â 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xEC };
IPAddress ip(192,168,1,2);
void setup() {
 Serial.begin(9600);
 Serial.println("Starting w5100");
 Ethernet.begin(mac,ip);
 Serial.println(Ethernet.localIP());
}
void loop() {
}
Result:
Starting w5100
255.255.255.255
Thanks