lfrfid_app_scene_rpc.h 315 B

123456789101112
  1. #pragma once
  2. #include "../lfrfid_app.h"
  3. class LfRfidAppSceneRpc : 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. bool emulating = false;
  10. };