mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
87 lines
2.5 KiB
C
87 lines
2.5 KiB
C
#include "../infrared_i.h"
|
|
|
|
#include "common/infrared_scene_universal_common.h"
|
|
|
|
void infrared_scene_universal_led_on_enter(void* context) {
|
|
infrared_scene_universal_common_on_enter(context);
|
|
|
|
Infrared* infrared = context;
|
|
ButtonPanel* button_panel = infrared->button_panel;
|
|
InfraredBruteForce* brute_force = infrared->brute_force;
|
|
|
|
infrared_brute_force_set_db_filename(brute_force, EXT_PATH("infrared/assets/led.ir"));
|
|
|
|
button_panel_reserve(button_panel, 2, 2);
|
|
uint32_t i = 0;
|
|
button_panel_add_item(
|
|
button_panel,
|
|
i,
|
|
0,
|
|
0,
|
|
3,
|
|
19,
|
|
&I_power_19x20,
|
|
&I_power_hover_19x20,
|
|
infrared_scene_universal_common_item_callback,
|
|
context);
|
|
infrared_brute_force_add_record(brute_force, i++, "POWER");
|
|
button_panel_add_item(
|
|
button_panel,
|
|
i,
|
|
1,
|
|
0,
|
|
36,
|
|
19,
|
|
&I_Flash_25x27,
|
|
&I_Flash_hvr_25x27,
|
|
infrared_scene_universal_common_item_callback,
|
|
context);
|
|
infrared_brute_force_add_record(brute_force, i++, "FLASH");
|
|
button_panel_add_item(
|
|
button_panel,
|
|
i,
|
|
0,
|
|
1,
|
|
3,
|
|
64,
|
|
&I_volup_24x21,
|
|
&I_volup_hover_24x21,
|
|
infrared_scene_universal_common_item_callback,
|
|
context);
|
|
infrared_brute_force_add_record(brute_force, i++, "BRIGHTNESS+");
|
|
button_panel_add_item(
|
|
button_panel,
|
|
i,
|
|
1,
|
|
1,
|
|
36,
|
|
64,
|
|
&I_voldown_24x21,
|
|
&I_voldown_hover_24x21,
|
|
infrared_scene_universal_common_item_callback,
|
|
context);
|
|
infrared_brute_force_add_record(brute_force, i++, "BRIGHTNESS-");
|
|
|
|
button_panel_add_label(button_panel, 5, 11, FontPrimary, "LED Remote");
|
|
button_panel_add_label(button_panel, 13, 60, FontSecondary, "Brightness");
|
|
|
|
view_set_orientation(view_stack_get_view(infrared->view_stack), ViewOrientationVertical);
|
|
view_dispatcher_switch_to_view(infrared->view_dispatcher, InfraredViewStack);
|
|
|
|
infrared_show_loading_popup(infrared, true);
|
|
bool success = infrared_brute_force_calculate_messages(brute_force);
|
|
infrared_show_loading_popup(infrared, false);
|
|
|
|
if(!success) {
|
|
scene_manager_next_scene(infrared->scene_manager, InfraredSceneErrorDatabases);
|
|
}
|
|
}
|
|
|
|
bool infrared_scene_universal_led_on_event(void* context, SceneManagerEvent event) {
|
|
return infrared_scene_universal_common_on_event(context, event);
|
|
}
|
|
|
|
void infrared_scene_universal_led_on_exit(void* context) {
|
|
infrared_scene_universal_common_on_exit(context);
|
|
}
|