v7

Dependents:   robot_final

Robot.h

Committer:
fab16
Date:
2017-02-09
Revision:
2:c17925c0ce25
Parent:
1:b3c45f39e86e
Child:
3:3f75a7741b8f

File content as of revision 2:c17925c0ce25:

#include "Affichage.h"
#include "LED.h"
#include "Deplacement.h"



class Robot{

    private:

     bool obstacle;
     Affichage affichage;
     LED led;
     Deplacement deplacement;

    public:
    
     Robot();
     ~Robot();
     
     Affichage getAffichage();
     LED getLed();
     Deplacement getDeplacement();

};