first commit

This commit is contained in:
2026-06-12 21:45:31 +02:00
parent c19de04051
commit 75c15c71ec
27 changed files with 3104 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
/*
* web_client.h
*
* Created on: 4. aug. 2023
* Author: OZ1CM
*/
#ifndef MAIN_INCLUDE_HTTP_CLIENT_H_
#define MAIN_INCLUDE_HTTP_CLIENT_H_
#include "esp_http_client.h"
typedef struct {
// Config
esp_http_client_config_t config;
esp_http_client_handle_t client;
}http_client_t;
int http_client_sendUrl(http_client_t *inst,char *url);
#endif /* MAIN_INCLUDE_HTTP_CLIENT_H_ */