23 lines
315 B
C
23 lines
315 B
C
#ifndef __UI_HTTP_SERVER_H__
|
|
#define __UI_HTTP_SERVER_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void init_http_server_task(char *key);
|
|
|
|
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__
|