You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we should build this project without esp_https_server component of idf in Cmake of spotifyInterface and change it to esp_http_server.
idf_component_register(SRCS "SpotifyAPICall.c" "JsonExtraction.c" "SpotifyInterface.c"
"SpotifyHttpLocalServer.c"
INCLUDE_DIRS "include"
REQUIRES mdns esp_wifi esp_event esp_eth protocol_examples_common
esp_http_server esp_http_client nvs_flash json
GlobalInit esp_psram heap)
and changed its name of header in SpotifyTypedef.h:
#include <esp_https_server.h --> #include <esp_http_server.h>
The text was updated successfully, but these errors were encountered:
we should build this project without esp_https_server component of idf in Cmake of spotifyInterface and change it to esp_http_server.
idf_component_register(SRCS "SpotifyAPICall.c" "JsonExtraction.c" "SpotifyInterface.c"
"SpotifyHttpLocalServer.c"
INCLUDE_DIRS "include"
REQUIRES mdns esp_wifi esp_event esp_eth protocol_examples_common
esp_http_server esp_http_client nvs_flash json
GlobalInit esp_psram heap)
and changed its name of header in SpotifyTypedef.h:
#include <esp_https_server.h --> #include <esp_http_server.h>
The text was updated successfully, but these errors were encountered: