2021-06-28 14:42:30 +00:00
|
|
|
#pragma once
|
2022-01-05 16:10:18 +00:00
|
|
|
#include "../lfrfid_app.h"
|
2021-06-28 14:42:30 +00:00
|
|
|
|
2022-04-14 12:03:47 +00:00
|
|
|
class LfRfidAppSceneReadKeyMenu : public GenericScene<LfRfidApp> {
|
2021-06-28 14:42:30 +00:00
|
|
|
public:
|
|
|
|
void on_enter(LfRfidApp* app, bool need_restore) final;
|
|
|
|
bool on_event(LfRfidApp* app, LfRfidApp::Event* event) final;
|
|
|
|
void on_exit(LfRfidApp* app) final;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void submenu_callback(void* context, uint32_t index);
|
|
|
|
uint32_t submenu_item_selected = 0;
|
|
|
|
};
|