endpoints for pressure and humidity

This commit is contained in:
2026-09-11 13:34:55 +02:00
parent 1261ad8f2d
commit 98fb81702b
4 changed files with 53 additions and 6 deletions
+7
View File
@@ -4,5 +4,12 @@
esp_err_t ygg_get_temp_handler(httpd_req_t *req);
extern const httpd_uri_t ygg_temp_uri;
extern const httpd_uri_t ygg_press_uri;
extern const httpd_uri_t ygg_hum_uri;
typedef struct {
const char *param_name;
float *param_val;
} ygg_http_user_ctx;
#endif