lfrfid_app_scene_write.h 344 B

12345678910111213
  1. #pragma once
  2. #include "../lfrfid_app.h"
  3. class LfRfidAppSceneWrite : 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. bool card_not_supported;
  11. };