Frank Hessel
Frank Hessel
> Maybe @fhessel knows more about suitable ESP32 boards. I don't have any boards matching that form factor at hand, only some experience in wiring an ESP32 WROOM module to...
Hi, I haven't been using push notifications by myself yet, but to my understanding, they are realized on client side by implementing a service worker in Javascript (see also [this...
Okay, having a look at the code there I get your point, the server side seems not to be as trivial as "just write a short handler function" - however,...
As far as I could read it by now, this feature would require implementing three different tasks (treat everything with caution, as mentioned, I haven't looked into push messages before):...
As mentioned, I understand why that's a useful feature, but I'll not be able to provide the server part at the moment. I may be able to eventually get back...
Are you trying to generate the certificate by the [script that's used for the examples](https://github.com/fhessel/esp32_https_server/blob/master/extras/create_cert.sh) or on the ESP32? On the ESP32, I'm not sure if the string you put...
You override what is in your buffer already. This is how your code gets executed when you receive 513 bytes: ```c++ // Buffer gets allocated byte buffer[1024]; // readLength is...
I cannot reproduce your error by myself, but there seems to be an issue with the state machine of the connection handler. Just removing that line might solve the issue...
I now tried a while to compare the performance of the previous version of the server against this PR in various configurations. But using the following sketch and [these scripts...
It would've been valid C code, but for C++ (and that's what this source file is), it is not. Thank you for pointing that out. However, the current xtensa toolchain...