Files

23 lines
310 B
C
Raw Permalink Normal View History

#ifndef __UI_HTTP_SERVER_H__
#define __UI_HTTP_SERVER_H__
2025-01-01 22:32:05 +01:00
#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;
2025-01-01 22:32:05 +01:00
#ifdef __cplusplus
}
#endif
#endif // __UI_HTTP_SERVER_H__