mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
23 lines
519 B
C
23 lines
519 B
C
#include "../hid.h"
|
|
#include "../views.h"
|
|
|
|
void hid_scene_main_on_enter(void* context) {
|
|
Hid* app = context;
|
|
view_dispatcher_switch_to_view(
|
|
app->view_dispatcher, scene_manager_get_scene_state(app->scene_manager, HidSceneMain));
|
|
}
|
|
|
|
bool hid_scene_main_on_event(void* context, SceneManagerEvent event) {
|
|
Hid* app = context;
|
|
bool consumed = false;
|
|
UNUSED(app);
|
|
UNUSED(event);
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void hid_scene_main_on_exit(void* context) {
|
|
Hid* app = context;
|
|
UNUSED(app);
|
|
}
|