esp32_https_server icon indicating copy to clipboard operation
esp32_https_server copied to clipboard

Is this library still maintained?

Open nicklasb opened this issue 3 years ago • 6 comments

Hi everybody,

I will try and use this library, but looking around it seems slightly abandoned. Has people moved on to other libraries or am I mistaken?

Kind regards, Nicklas

nicklasb avatar Sep 04 '22 23:09 nicklasb

Don't know, but I tried today and had some problems:

  • in HTTPConnection.hpp had to change #include <hwcrypto/sha.h> to #include <esp32/sha.h>
  • now I have this error: Arduino/libraries/ESP32_HTTPS_Server/src/WebsocketHandler.cpp:20:5: error: 'TAG' was not declared in this scope

MYBLtd avatar Oct 13 '22 19:10 MYBLtd

For the error in WebsocketHandler.cpp you need to include another header. Currently I don't know which one because I don't have access to my PC. But this question has already been anwered some time ago.

squonk11 avatar Oct 13 '22 20:10 squonk11

Look here: link

squonk11 avatar Oct 13 '22 20:10 squonk11

Personally, partially due to the lack of activity, I went on to use the esp_http_server.h instead, worked OK. This thread seems to have been diverted slightly, but on my part I can close this issue.

nicklasb avatar Oct 13 '22 21:10 nicklasb

I did some testing with debug level and including esp_log.h Setting debug level back to warn resolves the TAG error. Any more verbose will generate the error. Including esp_log.h makes no difference.

MYBLtd avatar Oct 13 '22 21:10 MYBLtd

A monkeypatch fix for the logging error is in my #156 comment

WayneKeenan avatar Aug 17 '23 10:08 WayneKeenan