5ed9bdbc37
* [FL-1652] IRDA: Continuous transmitting * continuous encoding and sending signals by pressing button on menu * fast buttons scrolling in remote menu * bruteforce: stop reading file if progress == 100% * IRDA: .hpp -> .h * [FL-1554] IRDA: xTaskNotify -> osEventsFlagSet * IRDA: some stability fixes * Irda: minor cleanup, api-hal to furi-hal rename. Co-authored-by: あく <alleteam@gmail.com>
31 lines
865 B
C++
31 lines
865 B
C++
#include "../irda-app.h"
|
|
#include "irda/irda-app-event.h"
|
|
|
|
void IrdaAppSceneRemoteList::on_enter(IrdaApp* app) {
|
|
IrdaAppFileParser file_parser;
|
|
bool success = false;
|
|
auto remote_manager = app->get_remote_manager();
|
|
auto last_selected_remote = remote_manager->get_remote_name();
|
|
auto selected_file = file_parser.file_select(
|
|
last_selected_remote.size() ? last_selected_remote.c_str() : nullptr);
|
|
if(!selected_file.empty()) {
|
|
if(remote_manager->load(selected_file)) {
|
|
app->switch_to_next_scene(IrdaApp::Scene::Remote);
|
|
success = true;
|
|
}
|
|
}
|
|
|
|
if(!success) {
|
|
app->switch_to_previous_scene();
|
|
}
|
|
}
|
|
|
|
bool IrdaAppSceneRemoteList::on_event(IrdaApp* app, IrdaAppEvent* event) {
|
|
bool consumed = false;
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void IrdaAppSceneRemoteList::on_exit(IrdaApp* app) {
|
|
}
|