dsbaha
dsbaha
I, too, have been looking at this. I suspect you have to change it in your config definition. Trying to find a way to generate a device name and a...
I was kinda having a similar issue until I put in yield statements, see [PR 138](https://github.com/Mixiaoxiao/Arduino-HomeKit-ESP8266/pull/138)
I, too, have recently experienced this problem. Originally I thought it was a problem with my code, but it seems like the problem may be elsewhere. I've been thinking about...
Seems like a timer in the main loop would do. Some pseudo code; ``` uint32_t timer = 0; if millis() > timer { timer = millis() + (3 * 1000);...
I made this PR and its been rock-solid for me. Although I only scoped it to LOWMEM, it may be worth putting it in the main code path. [PR Request...
My yield() patch is only relevant for boards compiled w/ the low_mem option. Maybe modify the patch so it runs on the default options as well? ``` \>>> [ 60717]...
I've been using a stratum proxy to accomplish this. Although the stratum proxy I'm using has bugs. I'm thinking of just quickly writing a go-lang based stratum proxy.
With a few code changes, I've been running on my ESP32-C3 boards myself. The code changes are tightening the sha256d loop and I'm seeing between 19KH/s - 23KH/s. Also added...