Mathieu Carbou

Results 324 comments of Mathieu Carbou

> I like approach #1 - keep everything centrally located and keep the Psychic classes tidy without a lot of #ifdefs scattered around. that's my goal, but for some exceptions...

FYI, the AsyncTCP lib also has to be updated. I am maintaining since a few months now a fork which is more up to date, compatible with Arduino 2 and...

> However, I get a few use of deleted function errors like this: ~~That's not normal... Did you import `AsyncWebSocket.h` ?~~ (That was incorrect sorry) I would need to see...

> I created a branch in my repo which moves from the esp home to your repo. You can see the complete log here: > > https://github.com/MoonModules/StarLight/actions/runs/11113157238/job/30876843828 > > this...

Choose the one you prefer! I am a heavy contributor / collaborator of Psychic: at the moment, we are preparing v2 which will be an API rework and won't be...

Also I am more concerned about this const issue which might be related to that: https://github.com/mathieucarbou/ESPAsyncWebServer/blob/main/src/AsyncWebSocket.h#L354 Can you please open a discussion in the right projet so that we stop...

@ewowi : you can upgrade to 3.3.7 : it includes the fix to be able to iterate over clients in a non-const way to call send methods. This limitation was...

Did you try outside of a onedrive folder ? I know onedrive sync mechanism can mess up with a compilation in progress on some cases.

Hello, I am the author of this extension (which I contributed to the pro version). I am using them a lot and they do work. I am using them like...

I have teh same need in my YaSolR project. You can easily create your own REST API with ESPAsyncWebServer. Example: ```c++ webServer .on("/api/router/relay1", HTTP_POST, [](AsyncWebServerRequest* request) { if (relay1.isEnabled() &&...