Time is good

Dependencies:   RoboClaw mbed

Fork of Robot2016_2-0 by ARES

Committer:
IceTeam
Date:
Wed May 04 19:43:53 2016 +0200
Revision:
56:4fd9636dfb36
Child:
57:86f491f5b25d
Changement dans la gestion des objectifs

Who changed what in which revision?

UserRevisionLine numberNew contents of line
IceTeam 56:4fd9636dfb36 1 #ifndef OBJECTIF_H
IceTeam 56:4fd9636dfb36 2 #define OBJECTIF_H
IceTeam 56:4fd9636dfb36 3
IceTeam 56:4fd9636dfb36 4 class Objectif {
IceTeam 56:4fd9636dfb36 5 public:
IceTeam 56:4fd9636dfb36 6 Objectif (int type, float x_obj, float y_obj, float y_objectif);
IceTeam 56:4fd9636dfb36 7
IceTeam 56:4fd9636dfb36 8 private:
IceTeam 56:4fd9636dfb36 9 int type;
IceTeam 56:4fd9636dfb36 10 float x_objectif, y_objectif, thet_object;
IceTeam 56:4fd9636dfb36 11 };
IceTeam 56:4fd9636dfb36 12
IceTeam 56:4fd9636dfb36 13 #endif