Problem With Ethernet Port - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=20) +--- Forum: KC868-A32/A32 Pro (https://www.kincony.com/forum/forumdisplay.php?fid=27) +--- Thread: Problem With Ethernet Port (/showthread.php?tid=6314) |
Problem With Ethernet Port - rferreras - 08-06-2024 I have the following Arduino code and I can not get my A32 Pro to connect to the network and take IP, in the port if I see that there is connection but I can not get it to take an IP address from the DHCP of my network. Code: #ifndef ETH_PHY_TYPE RE: Problem With Ethernet Port - admin - 08-07-2024 A32 pro not use by LAN8720, it use by w5500 chip. https://www.kincony.com/forum/showthread.php?tid=5812 this is arduino demo code for w5500 work with UDP RE: Problem With Ethernet Port - rferreras - 08-07-2024 In the end you can solve it using the following code, I share it in case someone needs it. Code: #include "Arduino.h" Now my problem is trying to enable the Watchdog, it is not respecting the function esp_task_wdt_reset() since I am constantly resetting the card, if anyone has any example of Watchdog on the esp32 S3 I would appreciate it. RE: Problem With Ethernet Port - admin - 08-07-2024 https://iotassistant.io/esp32/enable-hardware-watchdog-timer-esp32-arduino-ide/ |