mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 04:41:26 +04:00
* Move OTG controls to the power service * Accessor: add missing power service import * Power: add is_otg_enabled to info and properly handle OTG enable with VBUS voltage present * Power: method naming * Power: add backward compatibility with old-style use of furi_hal_power * Scripts: lower MIN_GAP_PAGES to 1 * SubGhz: fix incorrect logging tag * SubGhz: delegate OTG management to power service * Power: fix condition race, various improvements Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
59 lines
1.4 KiB
C++
59 lines
1.4 KiB
C++
#pragma once
|
|
#include <map>
|
|
#include <list>
|
|
#include "accessor_view_manager.h"
|
|
#include "scene/accessor_scene_start.h"
|
|
#include "helpers/wiegand.h"
|
|
#include <one_wire/one_wire_host.h>
|
|
#include <notification/notification_messages.h>
|
|
#include <expansion/expansion.h>
|
|
#include <power/power_service/power.h>
|
|
|
|
class AccessorApp {
|
|
public:
|
|
void run(void);
|
|
|
|
AccessorApp(void);
|
|
~AccessorApp(void);
|
|
|
|
enum class Scene : uint8_t {
|
|
Exit,
|
|
Start,
|
|
};
|
|
|
|
AccessorAppViewManager* get_view_manager(void);
|
|
void switch_to_next_scene(Scene index);
|
|
void search_and_switch_to_previous_scene(std::initializer_list<Scene> scenes_list);
|
|
bool switch_to_previous_scene(uint8_t count = 1);
|
|
Scene get_previous_scene(void);
|
|
|
|
void notify_green_blink(void);
|
|
void notify_success(void);
|
|
|
|
char* get_text_store(void);
|
|
uint8_t get_text_store_size(void);
|
|
void set_text_store(const char* text...);
|
|
|
|
WIEGAND* get_wiegand(void);
|
|
OneWireHost* get_one_wire(void);
|
|
|
|
private:
|
|
std::list<Scene> previous_scenes_list = {Scene::Exit};
|
|
Scene current_scene = Scene::Start;
|
|
AccessorAppViewManager view;
|
|
|
|
std::map<Scene, AccessorScene*> scenes = {
|
|
{Scene::Start, new AccessorSceneStart()},
|
|
};
|
|
|
|
static const uint8_t text_store_size = 128;
|
|
char text_store[text_store_size + 1];
|
|
|
|
WIEGAND wiegand;
|
|
OneWireHost* onewire_host;
|
|
|
|
NotificationApp* notification;
|
|
Expansion* expansion;
|
|
Power* power;
|
|
};
|