Robot's source code

Dependencies:   mbed

Map/Objectifs/Obj_pince.h

Committer:
Jagang
Date:
2015-05-06
Revision:
119:c45efcd706d9
Parent:
117:f8c147141a0c

File content as of revision 119:c45efcd706d9:

#ifndef OBJ_PINCE_H
#define OBJ_PINCE_H


#include "defines.h"

#include "AX12.h"
#include "Objectif.h"

class Obj_pince: public Objectif
{
public:
    Obj_pince(float x, float y, float xp, float yp, float theta, AX12 *ax12_pince);
    virtual void run();
    virtual int isActive();
private:
    AX12 *ax12_pince;
    float xp, yp;
};



#endif