Jesse Schoch

Results 80 comments of Jesse Schoch

does this need to be forked, no updates seem to be happening...

![image](https://user-images.githubusercontent.com/20271/111172311-f219d300-8562-11eb-913a-2a743db0e16c.png)

I can connect but I get a "no firmwares" error, the image below, or once I was able to get a firmware setting page but i don't really know how....

I wanted to have 10Ohm as the reference so test for continuity < 10Ohm. Now that I've looked at your diagram again it seems it relies on the internal pullup...

it is an esp32 that is crunching interrupts to run my lathe so HTTPS may be too much to ask. here's the code for the esp32 https://github.com/jschoch/ESPels/blob/dev/src/src/web.cpp#L932 and the react...

also, i saw in the documentation that the preflight example they used issues a 204, not a 200. I'd wonder if that is an issue on the server side but...

you may need to add ICACHE_RAM_ATTR to the isr function... ``` void ICACHE_RAM_ATTR interruptRoutine() { isr_flag = 1; } ```

this is resolved with the ignore additional axis option.

example: ```python Import("env") import os secret = "123$$a$$" # this insanity is required proper = "123$$$$$$$$a$$$$$$$$" # add macro definition for code to use in projenv (visible to src/ files)...

This doesn't seem to work for platformio. ``` #include "esp_log.h" #include "esp_ipc.h" #if ( defined(ESP_ARDUINO_VERSION_MAJOR) && (ESP_ARDUINO_VERSION_MAJOR >= 3) ) #include #include #else #warning "the detection failed" #endif ``` ```...