unleashed-firmware/applications/main/subghz_remote/subghz_remote_app_i.h

61 lines
1.4 KiB
C
Raw Normal View History

2023-05-18 10:48:25 +00:00
#pragma once
2023-07-10 14:21:49 +00:00
#define SUBREM_LIGHT 1
#define APP_SUBGHZREMOTE 1
2023-05-18 10:48:25 +00:00
#include "helpers/subrem_types.h"
2023-05-21 07:29:58 +00:00
#include "helpers/subrem_presets.h"
2023-05-30 13:51:07 +00:00
#include "scenes/subrem_scene.h"
2023-05-21 07:29:58 +00:00
2023-05-30 13:51:07 +00:00
#include "helpers/txrx/subghz_txrx.h"
2023-05-21 20:34:42 +00:00
2023-05-30 13:51:07 +00:00
#ifdef APP_SUBGHZREMOTE
2023-05-18 10:48:25 +00:00
#include <assets_icons.h>
2023-05-30 14:41:49 +00:00
#else
2023-05-30 13:51:07 +00:00
#include <subrem_remote_fap_icons.h>
#endif
2023-05-18 10:48:25 +00:00
#include "views/remote.h"
#include <gui/gui.h>
#include <gui/view_dispatcher.h>
#include <gui/scene_manager.h>
#include <gui/modules/submenu.h>
#include <gui/modules/widget.h>
#include <gui/modules/text_input.h>
2023-05-30 13:51:07 +00:00
#include <gui/modules/popup.h>
2023-05-18 10:48:25 +00:00
#include <dialogs/dialogs.h>
2023-05-30 13:51:07 +00:00
#include <notification/notification_messages.h>
2023-05-18 10:48:25 +00:00
#include <storage/storage.h>
#include <flipper_format/flipper_format_i.h>
2023-05-19 02:09:14 +00:00
#define SUBREM_APP_FOLDER EXT_PATH("subghz_remote")
2023-05-18 10:48:25 +00:00
#define SUBREM_MAX_LEN_NAME 64
typedef struct {
Gui* gui;
ViewDispatcher* view_dispatcher;
SceneManager* scene_manager;
NotificationApp* notifications;
DialogsApp* dialogs;
Submenu* submenu;
2023-05-21 07:29:58 +00:00
2023-05-18 10:48:25 +00:00
FuriString* file_path;
SubRemViewRemote* subrem_remote_view;
2023-05-21 07:29:58 +00:00
SubRemMapPreset* map_preset;
2023-05-18 10:48:25 +00:00
2023-05-21 20:34:42 +00:00
SubGhzTxRx* txrx;
2023-05-18 10:48:25 +00:00
uint8_t chusen_sub;
} SubGhzRemoteApp;
SubRemLoadMapState subrem_load_from_file(SubGhzRemoteApp* app);
2023-05-21 20:34:42 +00:00
bool subrem_tx_start_sub(SubGhzRemoteApp* app, SubRemSubFilePreset* sub_preset);
bool subrem_tx_stop_sub(SubGhzRemoteApp* app, bool forced);
2023-05-18 10:48:25 +00:00
2023-05-21 20:34:42 +00:00
void subrem_save_active_sub(void* context);