lfrfid_app_scene_read.h 278 B

123456789
  1. #pragma once
  2. #include "../lfrfid_app.h"
  3. class LfRfidAppSceneRead : 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. };