Ethernet3 icon indicating copy to clipboard operation
Ethernet3 copied to clipboard

Ethernet library for Arduino and Ethernetshield2 / WIZ550io / WIZ850io / USR-ES1 with Wiznet W5500 chip

Results 9 Ethernet3 issues
Sort by recently updated
recently updated
newest added

Hello, I can't help but notice that the repository contains no license file and that the source code file contain no license header. This would mean that the library is...

"setHostname" dont work for me I use W5500 shield and ESO8266 Init `Ethernet.setHostname("ethernet"); Ethernet.begin(mac);` DHCP return address But when I link for ethernet.local there os no answer in browser. What...

Can you overload init() function? You can specify which SPI bus to use. void EthernetClass::init(uint8_t sspin) { W5100.setSS(sspin); } void EthernetClass::init(uint8_t sspin, SPIClass &spi) { _spi = spi; W5100.setSS(sspin); }

Hi SStaub! First, thanks for that job. It´s cool. So, We are working on scenario where we using 2 W5500, sharing the ESP32 SPI bus, but each W5500 has own...

Thank you for cool job!!! I read all closed issues, but not found answer. I use several arduino(micro, nano, mega) + W5500 in my home automation, and discovered: if include...

Allows for an optional parameter to be passed to begin() to specify non-default SPI, similar to what is mentioned in #53. Example usage: - Ethernet.begin(mac, &customSpi); Tested to work with...

Maintainer is changed from `Arduino` to `sstaub` within the `library.properties` file.

Hello, I'm not sure if this is the write method to report the issue I'm fighting with. I'm using the W5500 and ethernet3 on a mega2560. I'm using JSON and...

When using PlatformIO with the following platformio.ini file: ``` [env:esp32dev] platform = espressif32 board = esp32dev framework = arduino lib_deps = https://github.com/sstaub/Ethernet3.git ``` And running the [WebServer](https://github.com/sstaub/Ethernet3/blob/main/examples/WebServer/WebServer.ino) example, several compilation...