15 lines
393 B
C
15 lines
393 B
C
// =========================
|
|
// meters_settings_api.h
|
|
// =========================
|
|
|
|
#ifndef METERS_SETTINGS_API_H
|
|
#define METERS_SETTINGS_API_H
|
|
|
|
#include "esp_err.h"
|
|
#include "esp_http_server.h"
|
|
|
|
// Função para registrar os manipuladores de URI para as configurações dos contadores
|
|
void register_meters_settings_handlers(httpd_handle_t server, void *ctx);
|
|
|
|
#endif // METERS_SETTINGS_API_H
|