lfrfid_app_scene_emulate.h 317 B

123456789101112
  1. #pragma once
  2. #include "../lfrfid_app.h"
  3. class LfRfidAppSceneEmulate : public GenericScene<LfRfidApp> {
  4. public:
  5. void on_enter(LfRfidApp* app, bool need_restore) final;
  6. bool on_event(LfRfidApp* app, LfRfidApp::Event* event) final;
  7. void on_exit(LfRfidApp* app) final;
  8. private:
  9. string_t data_string;
  10. };