
Time is good
Fork of Robot2016_2-0 by
ControlleurPince/ControlleurPince.h@97:42167cfeb8d7, 2016-05-06 (annotated)
- Committer:
- sype
- Date:
- Fri May 06 22:15:43 2016 +0000
- Revision:
- 97:42167cfeb8d7
- Parent:
- 93:c0b040954eac
- Child:
- 99:1fcb088f8f36
update gotoDistPos
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
IceTeam | 92:f09f55aa992b | 1 | #ifndef CONTROLLEUR_PINCE_H |
IceTeam | 92:f09f55aa992b | 2 | #define CONTROLLEUR_PINCE_H |
IceTeam | 92:f09f55aa992b | 3 | |
IceTeam | 92:f09f55aa992b | 4 | //#include "defines.h" |
IceTeam | 92:f09f55aa992b | 5 | #include "Stepper.h" |
sype | 97:42167cfeb8d7 | 6 | #include "AX12.h" |
IceTeam | 92:f09f55aa992b | 7 | #include "mbed.h" |
sype | 97:42167cfeb8d7 | 8 | |
sype | 97:42167cfeb8d7 | 9 | #define HAUT 1 |
sype | 97:42167cfeb8d7 | 10 | #define BAS 0 |
sype | 97:42167cfeb8d7 | 11 | #define DELAY 0.007 |
IceTeam | 92:f09f55aa992b | 12 | |
IceTeam | 92:f09f55aa992b | 13 | class ControlleurPince |
IceTeam | 92:f09f55aa992b | 14 | { |
IceTeam | 92:f09f55aa992b | 15 | public: |
IceTeam | 93:c0b040954eac | 16 | ControlleurPince(Stepper &p_RMot, Stepper &p_ZMot, Stepper &p_LMot, DigitalIn &p_EnR, DigitalIn &p_EnZ, DigitalIn &p_EnL, AX12 &_Lax12, AX12 &_Rax12); |
IceTeam | 92:f09f55aa992b | 17 | |
IceTeam | 92:f09f55aa992b | 18 | void init(); |
IceTeam | 92:f09f55aa992b | 19 | void home(bool r=true, bool z=true, bool l=true); |
IceTeam | 92:f09f55aa992b | 20 | void setPos(float z, float delta, float center = -600); |
IceTeam | 92:f09f55aa992b | 21 | |
IceTeam | 92:f09f55aa992b | 22 | void close(); |
IceTeam | 92:f09f55aa992b | 23 | void open(); |
IceTeam | 92:f09f55aa992b | 24 | |
IceTeam | 92:f09f55aa992b | 25 | private: |
IceTeam | 92:f09f55aa992b | 26 | |
IceTeam | 92:f09f55aa992b | 27 | Stepper &RMot, &ZMot, &LMot; |
IceTeam | 92:f09f55aa992b | 28 | |
IceTeam | 92:f09f55aa992b | 29 | DigitalIn &EnR, &EnZ, &EnL; |
IceTeam | 92:f09f55aa992b | 30 | |
IceTeam | 92:f09f55aa992b | 31 | AX12 &Lax12, &Rax12; |
IceTeam | 92:f09f55aa992b | 32 | |
IceTeam | 92:f09f55aa992b | 33 | float pos_r,pos_z,pos_l; |
IceTeam | 92:f09f55aa992b | 34 | }; |
IceTeam | 92:f09f55aa992b | 35 | |
IceTeam | 92:f09f55aa992b | 36 | #endif |