Results 238 comments of Scott Baker

That sounds like a local IP/Subnet issue on the sending box. Your ESP32 has a subnet of /16 (255.255.0.0), does your local box also? Are you able to ping the...

Everything looks OK to me. I suspect the issue isn't with WebOTA, but instead with basic IP connectivity between your Linux machine, and your ESP32.

I suspect the IP and subnet of your Linux machine, and your ESP32 are not the same.

Interesting... I have not had that issue before. I'd love a PR to update the documentation with that caveat.

I like this idea a lot actually. My first thought would just be to include the hostname in the HTML. No guarantee there is a hostname set though. Even if...

I wonder if the underlying ESP8266 libraries have changed since I wrote this? I'll do some investigating on my own and let you know. Can you provide the FQBN from...

With the Arduino IDE 1.8.12 and ESP8266 library 2.7.1 I was able to compile the Primes example just fine. I selected NodeMCU version 1.0 as my board and compiled the...

Can you provide an example? I am unable to reproduce this.

After some digging I was able to recreate the error with the small test case. #include #include void setup() { } void loop() { } Setting your board to an...

Digging through the trace it looks like an include of an include of an include... Looks like maybe it's a conflict with this: https://github.com/espressif/arduino-esp32/blob/master/tools/sdk/include/newlib/sys/select.h#L25 `PrintEx` declares `select` as a `template`,...