get bsvg string
parent
23eb8d5bce
commit
f062b492fc
@ -1,3 +1,3 @@
|
|||||||
idf_component_register(SRCS "main.c" "font.c" "display.c" "text.c" "wlan.c" "http.c"
|
idf_component_register(SRCS "main.c" "font.c" "display.c" "text.c" "wlan.c" "https.c"
|
||||||
REQUIRES esp_driver_gpio esp_wifi nvs_flash esp_timer
|
REQUIRES esp_driver_gpio esp_wifi nvs_flash esp_timer esp-tls
|
||||||
INCLUDE_DIRS "")
|
INCLUDE_DIRS "")
|
||||||
|
|||||||
@ -0,0 +1,10 @@
|
|||||||
|
#include "esp_system.h"
|
||||||
|
|
||||||
|
/* Constants that aren't configurable in menuconfig */
|
||||||
|
#define WEB_SERVER "mustbehax.de"
|
||||||
|
#define WEB_PORT "80"
|
||||||
|
#define WEB_PATH "/test"
|
||||||
|
|
||||||
|
#define RCV_BUFSIZE 8000
|
||||||
|
|
||||||
|
esp_err_t http_request(char* buf);
|
||||||
Loading…
Reference in New Issue