You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LoaderActivity.h 280B

12345678910111213141516171819202122
  1. #pragma once
  2. #include "BaseActivity.h"
  3. class LoaderActivity
  4. : public BaseActivity
  5. {
  6. public:
  7. void begin() override;
  8. void load();
  9. void reset();
  10. protected:
  11. void getLcdText(char** lines) override;
  12. void onButtonReleased(Button button) override;
  13. };