Módulo Ethernet (enc28j60) con Arduino

Especificaciones técnicas del chip ENC28J60 Conexión con Arduino   Ejemplo de código (Servidor web) #include <EtherCard.h> static byte mymac[] = {0xDD,0xDD,0xDD,0x00,0x01,0x05}; static byte myip[] = {192,168,1,177}; byte Ethernet::buffer[700]; const int ledPin = 2; char* EstadoLed=»OFF»; void setup () {     Serial.begin(9600);   Serial.println(«Test del Modulo ENC28J60»);     if (!ether.begin(sizeof Ethernet::buffer, mymac, 10))     Serial.println( «No se ha podido…

Read More