mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
25 lines
601 B
C
25 lines
601 B
C
#include <furi.h>
|
|
#include <power/power_service/power.h>
|
|
#include <gui/gui.h>
|
|
#include <gui/view.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <notification/notification.h>
|
|
|
|
#include <gui/modules/dialog_ex.h>
|
|
// FIXME
|
|
#include "../settings/power_settings_app/views/battery_info.h"
|
|
|
|
typedef struct {
|
|
Power* power;
|
|
Gui* gui;
|
|
NotificationApp* notifications;
|
|
ViewDispatcher* view_dispatcher;
|
|
BatteryInfo* battery_info;
|
|
DialogEx* dialog;
|
|
PowerInfo info;
|
|
} BatteryTestApp;
|
|
|
|
typedef enum {
|
|
BatteryTestAppViewBatteryInfo,
|
|
BatteryTestAppViewExitDialog,
|
|
} BatteryTestAppView;
|