Which library is suitable for ESP32 Ethernet w5500 module

Which library is suitable for ESP32 Ethernet w550 module?
Can the built-in library in Arduino itself be used?

assuming your Ethernet w550 module is compatible with the 3.3V of the ESP

➜ have you tried?

check with something like this

#include <SPI.h>
#include <Ethernet.h>
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; // change to suit needs
EthernetServer server(80);

void setup() {
  Serial.begin(115200); while(!Serial) yield();
  Ethernet.begin(mac);
  server.begin();
  Serial.print("Server's IP address: ");   Serial.println(Ethernet.localIP());
}

void loop() {
  EthernetClient client = server.available(); 
  if (client) {
    Serial.println("Client connected");

    client.println("HTTP/1.1 200 OK");
    client.println("Content-Type: text/html\r\n");
    client.println("<html><body><h1>Hello, World!</h1></body></html>");
    delay(1);
    client.stop();
    Serial.println("Client disconnected");
  }
}

you should see an IP address in the Serial monitor (opened at 115200) and if you connect from your browser to that IP you should get an Hello, World! page

if it does not compile or work, then you know something is broken :slight_smile:

Thanks, I will check
:pray:

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.