5 comentarios en «Día 9. Comunicaciones IP Arduino»

  1. Código para asignar IP por DHCP a Arduino:
    #include
    #include

    byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xYY };

    EthernetClient client;

    void setup() {
    // start the serial library:
    Serial.begin(9600);
    // start the Ethernet connection:
    if (Ethernet.begin(mac) == 0) {
    Serial.println(“Failed to configure Ethernet using DHCP”);
    // no point in carrying on, so do nothing forevermore:
    for(;;)
    ;
    }
    // print your local IP address:
    Serial.println(Ethernet.localIP());
    }

Deja una respuesta