b9a766d909
* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
54 lines
1.6 KiB
C
54 lines
1.6 KiB
C
#include "../infrared_i.h"
|
|
|
|
typedef enum {
|
|
SubmenuIndexUniversalTV,
|
|
SubmenuIndexUniversalAudio,
|
|
SubmenuIndexUniversalAirConditioner,
|
|
} SubmenuIndex;
|
|
|
|
static void infrared_scene_universal_submenu_callback(void* context, uint32_t index) {
|
|
Infrared* infrared = context;
|
|
view_dispatcher_send_custom_event(infrared->view_dispatcher, index);
|
|
}
|
|
|
|
void infrared_scene_universal_on_enter(void* context) {
|
|
Infrared* infrared = context;
|
|
Submenu* submenu = infrared->submenu;
|
|
|
|
submenu_add_item(
|
|
submenu,
|
|
"TVs",
|
|
SubmenuIndexUniversalTV,
|
|
infrared_scene_universal_submenu_callback,
|
|
context);
|
|
submenu_set_selected_item(submenu, 0);
|
|
|
|
view_dispatcher_switch_to_view(infrared->view_dispatcher, InfraredViewSubmenu);
|
|
}
|
|
|
|
bool infrared_scene_universal_on_event(void* context, SceneManagerEvent event) {
|
|
Infrared* infrared = context;
|
|
SceneManager* scene_manager = infrared->scene_manager;
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
if(event.event == SubmenuIndexUniversalTV) {
|
|
scene_manager_next_scene(scene_manager, InfraredSceneUniversalTV);
|
|
consumed = true;
|
|
} else if(event.event == SubmenuIndexUniversalAudio) {
|
|
//TODO Implement Audio universal remote
|
|
consumed = true;
|
|
} else if(event.event == SubmenuIndexUniversalAirConditioner) {
|
|
//TODO Implement A/C universal remote
|
|
consumed = true;
|
|
}
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void infrared_scene_universal_on_exit(void* context) {
|
|
Infrared* infrared = context;
|
|
submenu_reset(infrared->submenu);
|
|
}
|