forkineye / ESPAsyncE131

Asynchronous E1.31 (sACN) library for Arduino ESP8266 and ESP32

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

7 second delay

tresler opened this issue · comments

I try doing sACN receiver by this and ESP32-S2, but I have 7 second delay on local network. I try to do on ethernet with W5500 (on ESPAsyncE131.h change #ifdef ESP32 #include <Ethernet.h> #include <EthernetUdp.h> #include <AsyncUDP.h> and some change in example code) and everything works fine (with one restart), but also I have 7 second delay from my lightpost. Where can be the mistake?

The W5500 is an SPI Ethernet controller. The ESP32 has it's own Ethernet MAC. I you're wanting to do Ethernet on ESP32, I'd recommend implementing the Ethernet PHY for it and getting away from the W5500.