mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-24 05:34:45 -07:00
add findmy to system apps [ci skip]
autoload by Willy-JL
This commit is contained in:
54
applications/system/find_my_flipper/findmy_i.h
Normal file
54
applications/system/find_my_flipper/findmy_i.h
Normal file
@@ -0,0 +1,54 @@
|
||||
#pragma once
|
||||
|
||||
#include "findmy.h"
|
||||
#include "findmy_state.h"
|
||||
#include <furi_hal_bt.h>
|
||||
#include <extra_beacon.h>
|
||||
#include "findmy_icons.h"
|
||||
#include <toolbox/stream/file_stream.h>
|
||||
#include <toolbox/hex.h>
|
||||
#include <toolbox/path.h>
|
||||
#include <gui/gui.h>
|
||||
#include <storage/storage.h>
|
||||
#include <dialogs/dialogs.h>
|
||||
#include <gui/scene_manager.h>
|
||||
#include <gui/view_dispatcher.h>
|
||||
#include "views/findmy_main.h"
|
||||
#include <gui/modules/byte_input.h>
|
||||
#include <gui/modules/variable_item_list.h>
|
||||
#include <gui/modules/popup.h>
|
||||
#include "scenes/findmy_scene.h"
|
||||
#include "helpers/base64.h"
|
||||
|
||||
void findmy_reverse_mac_addr(uint8_t mac_addr[GAP_MAC_ADDR_SIZE]);
|
||||
|
||||
struct FindMy {
|
||||
Gui* gui;
|
||||
Storage* storage;
|
||||
DialogsApp* dialogs;
|
||||
SceneManager* scene_manager;
|
||||
ViewDispatcher* view_dispatcher;
|
||||
|
||||
FindMyMain* findmy_main;
|
||||
ByteInput* byte_input;
|
||||
VariableItemList* var_item_list;
|
||||
Popup* popup;
|
||||
|
||||
uint8_t mac_buf[EXTRA_BEACON_MAC_ADDR_SIZE];
|
||||
uint8_t packet_buf[EXTRA_BEACON_MAX_DATA_SIZE];
|
||||
|
||||
FindMyState state;
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
FindMyViewMain,
|
||||
FindMyViewByteInput,
|
||||
FindMyViewVarItemList,
|
||||
FindMyViewPopup,
|
||||
} FindMyView;
|
||||
|
||||
void findmy_change_broadcast_interval(FindMy* app, uint8_t value);
|
||||
void findmy_change_transmit_power(FindMy* app, uint8_t value);
|
||||
void findmy_toggle_show_mac(FindMy* app, bool show_mac);
|
||||
void findmy_set_tag_type(FindMy* app, FindMyType type);
|
||||
void findmy_toggle_beacon(FindMy* app);
|
||||
Reference in New Issue
Block a user