mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
55 lines
1.4 KiB
C
55 lines
1.4 KiB
C
|
|
#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);
|