47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
#ifndef METER_EVENTS_H
|
|
#define METER_EVENTS_H
|
|
|
|
#include "esp_event.h"
|
|
#include "meter_manager.h" // Para meter_type_t
|
|
#include <stdint.h> // Para int64_t
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Base de eventos dos medidores
|
|
ESP_EVENT_DECLARE_BASE(METER_EVENT);
|
|
|
|
// IDs de eventos emitidos por medidores
|
|
typedef enum {
|
|
METER_EVENT_DATA_READY = 0,
|
|
METER_EVENT_ERROR,
|
|
METER_EVENT_STARTED,
|
|
METER_EVENT_STOPPED,
|
|
METER_EVENT_CONFIG_UPDATED // Novo: configuração (grid/evse) atualizada
|
|
} meter_event_id_t;
|
|
|
|
// Estrutura de dados enviados com METER_EVENT_DATA_READY
|
|
typedef struct {
|
|
const char *source; // "GRID" ou "EVSE"
|
|
float vrms[3]; // Tensão por fase
|
|
float irms[3]; // Corrente por fase
|
|
int watt[3]; // Potência ativa por fase
|
|
float frequency; // Frequência da rede (Hz)
|
|
float power_factor; // Fator de potência
|
|
float total_energy; // Energia acumulada (kWh)
|
|
} meter_event_data_t;
|
|
|
|
// Estrutura de dados enviados com METER_EVENT_CONFIG_UPDATED
|
|
typedef struct {
|
|
meter_type_t grid_type; // Tipo de contador configurado para o GRID
|
|
meter_type_t evse_type; // Tipo de contador configurado para a EVSE
|
|
int64_t timestamp_us; // Momento da atualização (esp_timer_get_time)
|
|
} meter_config_event_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // METER_EVENTS_H
|