Initial publish

Dependencies:   mbed

Fork of el17dg by Dmitrijs Griskovs

tutorial/tutorial.h

Committer:
Noximilien
Date:
2019-04-08
Revision:
27:f05f4e738ba9
Parent:
24:0570cb4b92d7
Child:
28:35af3843de8f

File content as of revision 27:f05f4e738ba9:

#ifndef TUTORIAL_H
#define TUTORIAL_H

const int right_arrow_pos_x = 66;
const int left_arrow_pos_x = 5;
const int arrows_pos_y = 0;

class Tutorial{
    public:
    Tutorial();
    bool updateAndWriteTutorial();
    
    private:
    int current_page;
};


#endif