#ifndef BATTERY_STATUS_EVENT_H #define BATTERY_STATUS_EVENT_H #include #include #include #include struct battery_status_event { struct app_event_header header; bool charging; bool full; uint8_t soc; }; APP_EVENT_TYPE_DECLARE(battery_status_event); #endif