Search found 1 match
- Sat Oct 12, 2024 12:33 pm
- Forum: Sample Code
- Topic: Lilygo T-ETH-Lite ESP32-S3
- Replies: 1
- Views: 1601
Re: Lilygo T-ETH-Lite ESP32-S3
IPAddress staticIP(169, 254, 1, 2); IPAddress gateway(169, 254, 1, 1); IPAddress subnet(255, 255, 0, 0); IPAddress dns(169, 254, 1, 1); set this data and then configure your ethernet params during setup as follows ETH.begin(); if (ETH.config(staticIP, gateway, subnet, dns, dns) == false) { Serial.pr...