Hello all,
First off big thanks to ntruchsess for all his great work on the library!
I'm trying to get the ENC28J60 to work with my Duemilanove but I've had no luck. I've tried changing Ethernet.h -> UIPEthernet.h and running the stock Webserver sketch and I've tried the EchoServer example from the UIPEthernet library.
The only thing I get it the "server is at 192.168.1.144" Serial Printing (My router is 192.168.1.1, Subnet = 255.255.255.0). Any suggestions would be greatly appreciated as I've been fighting this for a week now trying all the possible libraries.
I've got {SCK , SO, SI, CS} to {13 , 12 , 11 , 10}; and here are my code parameters: uint8_t mac[6] = {0x00,0x01,0x02,0x03,0x04,0x05}; IPAddress ip(192,168,1,144); EthernetServer server(80);