main.c 337 B

12345678910111213141516
  1. #include "../ble_spam.h"
  2. void scene_main_on_enter(void* _ctx) {
  3. Ctx* ctx = _ctx;
  4. view_dispatcher_switch_to_view(ctx->view_dispatcher, ViewMain);
  5. }
  6. bool scene_main_on_event(void* _ctx, SceneManagerEvent event) {
  7. UNUSED(_ctx);
  8. UNUSED(event);
  9. return false;
  10. }
  11. void scene_main_on_exit(void* _ctx) {
  12. UNUSED(_ctx);
  13. }