September 01, 2024, 02:12:31 AM

Olimex ESP32-EVB Ethernet

Started by walterjack, July 23, 2024, 09:32:59 AM

Previous topic - Next topic

walterjack

Hello,
Does anyone have a simple example of a sketch for using Ethernet on the Olimex ESP32-EVB that I can get inspired from (I use PlatformIO)? I am trying to add Ethernet funcionality to my application which currently uses WiFi only. Basically if Ethernet is connected, use Ethernet, otherwise connect to WiFi.

Thanks!

LubOlimex

Maybe take a look at this, it is not exactly what you want but demonstrates Ethernet and WIFI:

https://github.com/OLIMEX/ESP32-POE/blob/master/SOFTWARE/ARDUINO/ESP32_PoE_Ethernet_WIFI_test/ESP32_PoE_Ethernet_WIFI_test.ino

Remember to put your WIFI's SSID and password.
Technical support and documentation manager at Olimex

walterjack

Quote from: LubOlimex on July 23, 2024, 12:47:47 PMMaybe take a look at this, it is not exactly what you want but demonstrates Ethernet and WIFI:

https://github.com/OLIMEX/ESP32-POE/blob/master/SOFTWARE/ARDUINO/ESP32_PoE_Ethernet_WIFI_test/ESP32_PoE_Ethernet_WIFI_test.ino

Remember to put your WIFI's SSID and password.
Thanks for your answer. I got it.