dsbaha

Results 6 comments of 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]...