ESP32-Ethernet Kit
Posted: Sun May 15, 2022 9:41 pm
Is the ESP32-Ethernet Kit V1 supported in the Arduino IDE/Framework? I don't seem to be able to find that board.
Sid
Sid
Code: Select all
#define ETH_ADDR 31
#define ETH_POWER_PIN 17
#define ETH_MDC_PIN 23
#define ETH_MDIO_PIN 18
#define ETH_TYPE ETH_PHY_TLK110
Code: Select all
E (1028) esp.emac: emac_esp32_init(354): reset timeout
E (1028) esp_eth: esp_eth_driver_install(221): init mac failed
Code: Select all
#define ETH_ADDR 31
#define ETH_POWER_PIN 5
#define ETH_MDC_PIN 23
#define ETH_MDIO_PIN 18
#define ETH_TYPE ETH_PHY_TLK110
Code: Select all
E (138) ip101: ip101_pwrctl(295): power up timeout
E (138) ip101: ip101_init(358): power control failed
E (138) esp_eth: esp_eth_driver_install(222): init phy failed
Code: Select all
ETH.begin(ETH_ADDR, ETH_POWER_PIN, ETH_MDC_PIN, ETH_MDIO_PIN, ETH_TYPE, ETH_CLOCK_GPIO0_IN);