2021-06-30 12:02:46 +00:00
|
|
|
#pragma once
|
2022-01-05 16:10:18 +00:00
|
|
|
#include "../lfrfid_app.h"
|
2021-06-30 12:02:46 +00:00
|
|
|
|
|
|
|
class LfRfidAppSceneSaveSuccess : public GenericScene<LfRfidApp> {
|
|
|
|
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 timeout_callback(void* context);
|
2022-05-06 13:37:10 +00:00
|
|
|
};
|