mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-22 05:14:46 -07:00
* [BLE Remote] Add Rename Option Adds an option to rename the advertised Bluetooth device. Closes #410. * Fix formatting * Revert changes to firmware Copies some of the firmware code to modify it, rather than directly modifying it in the firmware. * Fix compile error for USB transport * Similar concept for BadKB too * Save to setting file, polish the edges a bit * Fix LSP warning * Update changelog --------- Co-authored-by: WillyJL <me@willyjl.dev>
83 lines
2.3 KiB
C
83 lines
2.3 KiB
C
#include "../hid.h"
|
|
#include "../views.h"
|
|
#include "hid_icons.h"
|
|
|
|
enum HidSceneRenameEvent {
|
|
HidSceneRenameEventTextInput,
|
|
HidSceneRenameEventPopup,
|
|
};
|
|
|
|
static void hid_scene_rename_text_input_callback(void* context) {
|
|
Hid* app = context;
|
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, HidSceneRenameEventTextInput);
|
|
}
|
|
|
|
void hid_scene_rename_popup_callback(void* context) {
|
|
Hid* app = context;
|
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, HidSceneRenameEventPopup);
|
|
}
|
|
|
|
void hid_scene_rename_on_enter(void* context) {
|
|
Hid* app = context;
|
|
|
|
// Rename text input view
|
|
text_input_reset(app->text_input);
|
|
text_input_set_result_callback(
|
|
app->text_input,
|
|
hid_scene_rename_text_input_callback,
|
|
app,
|
|
app->ble_hid_cfg.name,
|
|
sizeof(app->ble_hid_cfg.name),
|
|
true);
|
|
text_input_set_header_text(app->text_input, "Bluetooth Name");
|
|
|
|
// Rename success popup view
|
|
popup_set_icon(app->popup, 48, 6, &I_DolphinDone_80x58);
|
|
popup_set_header(app->popup, "Done", 14, 15, AlignLeft, AlignTop);
|
|
popup_set_timeout(app->popup, 1500);
|
|
popup_set_context(app->popup, app);
|
|
popup_set_callback(app->popup, hid_scene_rename_popup_callback);
|
|
popup_enable_timeout(app->popup);
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, HidViewTextInput);
|
|
}
|
|
|
|
bool hid_scene_rename_on_event(void* context, SceneManagerEvent event) {
|
|
Hid* app = context;
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
consumed = true;
|
|
if(event.event == HidSceneRenameEventTextInput) {
|
|
#ifdef HID_TRANSPORT_BLE
|
|
furi_hal_bt_stop_advertising();
|
|
|
|
app->ble_hid_profile =
|
|
bt_profile_start(app->bt, ble_profile_hid_ext, &app->ble_hid_cfg);
|
|
furi_check(app->ble_hid_profile);
|
|
|
|
furi_hal_bt_start_advertising();
|
|
#endif
|
|
|
|
bt_hid_save_cfg(app);
|
|
|
|
// Show popup
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, HidViewPopup);
|
|
|
|
} else if(event.event == HidSceneRenameEventPopup) {
|
|
scene_manager_previous_scene(app->scene_manager);
|
|
}
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void hid_scene_rename_on_exit(void* context) {
|
|
Hid* app = context;
|
|
|
|
text_input_reset(app->text_input);
|
|
popup_reset(app->popup);
|
|
}
|