summaryrefslogtreecommitdiff
path: root/Mode/ModeConfig.h
blob: be478dde7579c6674ad78460502122040d03a417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __MODECONFIG_H__
#define __MODECONFIG_H__

#include "Mode.h"
#include "LayoutConfig.h"
#include "mDot.h"

class ModeConfig : public Mode {
    public:
        ModeConfig(DOGS102* lcd, ButtonHandler* buttons, mDot* dot);
        ~ModeConfig();

        bool start();

    private:
        LayoutConfig _lc;
        mDot* _dot;
        ButtonHandler::ButtonEvent _be;
};

#endif