Robot's source code
Dependencies: mbed
Map/Objectifs/Obj_depot.h
- Committer:
- Jagang
- Date:
- 2015-05-11
- Revision:
- 123:55e5e9acc541
- Parent:
- 117:f8c147141a0c
File content as of revision 123:55e5e9acc541:
#ifndef OBJ_DEPOT_H #define OBJ_DEPOT_H #include "defines.h" #include "AX12.h" #include "Objectif.h" class Obj_depot: public Objectif { public: Obj_depot(float x, float y, float theta, AX12 *ax12_pince); virtual void run(); virtual int isActive(); private: AX12 *ax12_pince; }; #endif