Initial publish

Dependencies:   mbed

Fork of el17dg by Dmitrijs Griskovs

tutorial/tutorial.h

Committer:
Noximilien
Date:
2019-04-02
Revision:
24:0570cb4b92d7
Child:
27:f05f4e738ba9

File content as of revision 24:0570cb4b92d7:

#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