[FL-2019] Battery test application (#940)
* Power: rework API * Applications: introduce battery test application * Power: fix typo * Desktop: cleanup merge artifacts Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
This commit is contained in:
24
applications/power/battery_test_app/battery_test_app.h
Normal file
24
applications/power/battery_test_app/battery_test_app.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#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>
|
||||
#include <power/power_settings_app/views/battery_info.h>
|
||||
|
||||
typedef struct {
|
||||
Power* power;
|
||||
Gui* gui;
|
||||
NotificationApp* notifications;
|
||||
ViewDispatcher* view_dispatcher;
|
||||
BatteryInfo* batery_info;
|
||||
DialogEx* dialog;
|
||||
PowerInfo info;
|
||||
} BatteryTestApp;
|
||||
|
||||
typedef enum {
|
||||
BatteryTestAppViewBatteryInfo,
|
||||
BatteryTestAppViewExitDialog,
|
||||
} BatteryTestAppView;
|
Reference in New Issue
Block a user