c0148f2912
Only the menu works so far Signed-off-by: Markus Birth <markus@birth-online.de>
23 lines
536 B
C
23 lines
536 B
C
#include "../uk_mbirth_sonicare.h"
|
|
#include <dolphin/dolphin.h>
|
|
|
|
void sonicare_scene_read_on_enter(void* context) {
|
|
Sonicare* app = context;
|
|
UNUSED(app);
|
|
}
|
|
|
|
bool sonicare_scene_read_on_event(void* context, SceneManagerEvent event) {
|
|
Sonicare* app = context;
|
|
UNUSED(app);
|
|
UNUSED(event);
|
|
bool consumed = false;
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void sonicare_scene_read_on_exit(void* context) {
|
|
Sonicare* app = context;
|
|
notification_message(app->notifications, &sequence_blink_stop);
|
|
popup_reset(app->popup);
|
|
}
|