DeskControl/src/lib/screen/home.h

22 lines
366 B
C
Raw Normal View History

#ifndef __screen_home
#define __screen_home
#include "../screen.h"
/*
* Home screen
* Shows the current presets and an option to go to the menu.
*/
class HomeScreen : public BaseScreen
{
public:
HomeScreen(ScreenManager* screenManager) : BaseScreen(screenManager) { }
void onShow();
void onButton(Button button);
void onTick();
};
#endif