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
|
|
|
|
|
|
|
class LfRfidAppSceneWrite : 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:
|
|
|
|
string_t data_string;
|
|
|
|
bool card_not_supported;
|
|
|
|
};
|