v7

Dependents:   robot_final

Robot.h

Committer:
fab16
Date:
2017-02-27
Revision:
3:3f75a7741b8f
Parent:
2:c17925c0ce25
Child:
4:c8ae1b606d51

File content as of revision 3:3f75a7741b8f:

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

#include "mbed.h"



class Robot{

    private:

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

    public:
    
     Robot();
     ~Robot();
     
     Affichage getAffichage();
     LED getLed();
     Deplacement getDeplacement();
     Pattern getPattern();
     void action(int idAction);
     //SRF05 getSrf();
     

};