Search found 3 matches
- Thu Nov 30, 2023 1:52 pm
- Forum: ESP32 Arduino
- Topic: New library announcement: PsychicHttp
- Replies: 1
- Views: 10660
New library announcement: PsychicHttp
Do you have an esp32 and need a webserver, but have been frustrated with the reliability of ESPAsyncWebserver? Or maybe you desperately need SSL? You might be interested in the new library I just released. Its called PsychicHttp and its a wrapper around the ESP-IDF http server library. While its not...
- Tue Nov 28, 2023 11:22 pm
- Forum: ESP-IDF
- Topic: How to check CONFIG_ESP_HTTPS_SERVER_ENABLE within library?
- Replies: 0
- Views: 2249
How to check CONFIG_ESP_HTTPS_SERVER_ENABLE within library?
I'm working on a library that is a wrapper of the ESP-IDF HTTP Server library: https://github.com/hoeken/PsychicHTTP/ Currently it works on the platformio / arduino framework, but I'd like to add support for Arduino and ESP-IDF eventually as well. The problem is, different frameworks have CONFIG_ESP...
- Sat Nov 25, 2023 2:51 pm
- Forum: ESP-IDF
- Topic: ESP HTTP Server + Expect: 100-continue
- Replies: 0
- Views: 2701
ESP HTTP Server + Expect: 100-continue
I'm working on a wrapper library for the ESP-IDF Http Server located here: https://github.com/hoeken/PsychicHTTP/ I'm trying to implement support for the Expect: 100-continue header, for uploads to the server. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expect Basically, the client sen...