Merge branch 'grey_color' into 'main'

update components

See merge request userbogd/webguiapp_ref_implement!3
This commit is contained in:
Bogdan Pilyugin 2023-04-04 06:43:19 +00:00
commit 9797e62592
4 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 9c2cf0c292500892ae4b80bfae7430d47c0cb98f Subproject commit 0024698adf9d3f849609a70c3048ef3b417bea9c

@ -1 +1 @@
Subproject commit 5447358116d3ee5a198fb646e2322a7dff0c2434 Subproject commit d603d92738f677e9391afae9cb57b95db17148f7

View File

@ -5,7 +5,7 @@ dependencies:
source: source:
type: idf type: idf
version: 4.4.4 version: 4.4.4
manifest_hash: eb33eed6204aeebc93ef87ce0ee4c46aa4a936fb925253457119240e0cfb2135 manifest_hash: 31dd4ec84ade1450fc168388f4adce2efacd1516170670735140bc772e9d72bd
target: esp32 target: esp32
version: 1.0.0 version: 1.0.0
======= =======

View File

@ -1,9 +1,9 @@
#include <stdio.h> #include <stdio.h>
#include <stdbool.h> #include <stdbool.h>
#include <unistd.h> #include <unistd.h>
#include "webguiapp.h" #include "webguiapp.h"
int HTTPPrintCustom(httpd_req_t *req, char *buf, char *var, int arg); int HTTPPrintCustom(httpd_req_t *req, char *buf, char *var, int arg);
HTTP_IO_RESULT AfterPostHandlerCustom(httpd_req_t *req, const char *filename, char *PostData); HTTP_IO_RESULT AfterPostHandlerCustom(httpd_req_t *req, const char *filename, char *PostData);
void UserMQTTEventHndlr(int idx, void *handler_args, esp_event_base_t base, int32_t event_id, void *event_data); void UserMQTTEventHndlr(int idx, void *handler_args, esp_event_base_t base, int32_t event_id, void *event_data);