
Search found 3 matches
- Thu Feb 06, 2020 10:28 am
- Forum: Programs, Libraries and Tools
- Topic: Using Ethernet on the ESP32
- Replies: 3
- Views: 3922
Re: Using Ethernet on the ESP32
ok, sorry I just dopple checked it and it just work fine 

- Thu Feb 06, 2020 9:41 am
- Forum: Programs, Libraries and Tools
- Topic: Using Ethernet on the ESP32
- Replies: 3
- Views: 3922
Re: Using Ethernet on the ESP32
With following code I mean code that is in my main.py after LAN.active(1) for example: import network from machine import Pin LAN = network.LAN(mdc = Pin(23), mdio = Pin(18), power = None, phy_type = network.PHY_LAN8720, clock_mode=network.ETH_CLOCK_GPIO0_IN, phy_addr=0) LAN.active(1) print('Connect...
- Wed Feb 05, 2020 1:52 pm
- Forum: Programs, Libraries and Tools
- Topic: Using Ethernet on the ESP32
- Replies: 3
- Views: 3922
Using Ethernet on the ESP32
Hello everybody, I'm using a ESP32 with an LAN8710A-EZC similare to an Olimax board ( https://www.olimex.com/Products/IoT/ESP32/ESP32-EVB/open-source-hardware ). On the board is running MicroPython 1.12-137. To initialize the Ethernet connection I use the following code: import network from machine ...