1
0

http requests from esp32 to api

This commit is contained in:
Jose
2025-04-09 14:19:52 +02:00
parent 0c03c052b4
commit 245f213ad9
15 changed files with 72 additions and 37 deletions

View File

@@ -0,0 +1,4 @@
#include <HTTPClient.h>
void getRequest(HTTPClient &httpClient, const String url, String &response);
void postRequest(HTTPClient &httpClient, const String url, const String &payload, String &response);