Files
snapclient/components/ui_http_server/include/ui_http_server.h
Karl Osterseher fa9852ac31 - make wifi_provisioning component compatible with netwrok_interface component
- add i2s channel delete to deinit_player()
- improve network interface component
  store IP and connection status of interfaces
- improve UI http server

Signed-off-by: Karl Osterseher <karli_o@gmx.at>
2025-02-21 18:43:18 +01:00

23 lines
310 B
C

#ifndef __UI_HTTP_SERVER_H__
#define __UI_HTTP_SERVER_H__
#ifdef __cplusplus
extern "C" {
#endif
void init_http_server_task(void);
typedef struct {
char str_value[8];
long long_value;
float gain_1;
float gain_2;
float gain_3;
} URL_t;
#ifdef __cplusplus
}
#endif
#endif // __UI_HTTP_SERVER_H__