2023-03-03 18:50:44 +00:00
|
|
|
#include "Strategie_prise_cerises.h"
|
|
|
|
#include "Commande_vitesse.h"
|
|
|
|
#include "Geometrie.h"
|
|
|
|
#include "Geometrie_robot.h"
|
|
|
|
#include "math.h"
|
2023-03-18 16:59:15 +00:00
|
|
|
#include "i2c_annexe.h"
|
2023-03-03 18:50:44 +00:00
|
|
|
|
|
|
|
// Rotation en rad/s pour accoster les cerises
|
|
|
|
#define ROTATION_CERISE 0.5f
|
|
|
|
|
2023-03-18 16:59:15 +00:00
|
|
|
void commande_rotation_contacteur_longer_A();
|
|
|
|
void commande_rotation_contacteur_longer_C();
|
|
|
|
|
2023-03-16 22:27:08 +00:00
|
|
|
|
2023-03-03 18:50:44 +00:00
|
|
|
double vitesse_accostage_mm_s=100;
|
|
|
|
|
|
|
|
enum etat_action_t cerise_accostage(void){
|
|
|
|
enum etat_action_t etat_action = ACTION_EN_COURS;
|
|
|
|
double rotation;
|
|
|
|
|
|
|
|
static enum {
|
|
|
|
CERISE_AVANCE_DROIT,
|
2023-03-18 16:59:15 +00:00
|
|
|
CERISE_TOURNE_CONTACTEUR_LONGER_A,
|
|
|
|
CERISE_TOURNE_CONTACTEUR_LONGER_C,
|
2023-03-03 18:50:44 +00:00
|
|
|
CERISE_ACCOSTE
|
|
|
|
} etat_accostage=CERISE_AVANCE_DROIT;
|
|
|
|
|
|
|
|
switch (etat_accostage)
|
|
|
|
{
|
|
|
|
case CERISE_AVANCE_DROIT:
|
|
|
|
commande_vitesse(vitesse_accostage_mm_s * cos(-M_PI/6), vitesse_accostage_mm_s * sin(-M_PI/6), 0);
|
2023-03-18 16:59:15 +00:00
|
|
|
if(i2c_annexe_get_contacteur_longer_A() == CONTACTEUR_ACTIF){
|
|
|
|
etat_accostage=CERISE_TOURNE_CONTACTEUR_LONGER_A;
|
|
|
|
}
|
|
|
|
if(i2c_annexe_get_contacteur_longer_C() == CONTACTEUR_ACTIF){
|
|
|
|
etat_accostage=CERISE_TOURNE_CONTACTEUR_LONGER_C;
|
|
|
|
}
|
|
|
|
if (i2c_annexe_get_contacteur_longer_A() == CONTACTEUR_ACTIF && i2c_annexe_get_contacteur_longer_C() == CONTACTEUR_ACTIF){
|
|
|
|
etat_accostage=CERISE_ACCOSTE;
|
|
|
|
}
|
2023-03-03 18:50:44 +00:00
|
|
|
break;
|
|
|
|
|
2023-03-18 16:59:15 +00:00
|
|
|
case CERISE_TOURNE_CONTACTEUR_LONGER_A:
|
|
|
|
commande_rotation_contacteur_longer_A();
|
|
|
|
if(i2c_annexe_get_contacteur_longer_A() == CONTACTEUR_INACTIF){
|
|
|
|
if(i2c_annexe_get_contacteur_longer_C() == CONTACTEUR_INACTIF){
|
|
|
|
etat_accostage = CERISE_AVANCE_DROIT;
|
|
|
|
}else{
|
|
|
|
etat_accostage = CERISE_TOURNE_CONTACTEUR_LONGER_A;
|
|
|
|
}
|
|
|
|
}else if(i2c_annexe_get_contacteur_longer_C() == CONTACTEUR_ACTIF){
|
|
|
|
etat_accostage = CERISE_ACCOSTE;
|
|
|
|
}
|
2023-03-03 18:50:44 +00:00
|
|
|
break;
|
|
|
|
|
2023-03-18 16:59:15 +00:00
|
|
|
case CERISE_TOURNE_CONTACTEUR_LONGER_C:
|
|
|
|
commande_rotation_contacteur_longer_C();
|
|
|
|
if(i2c_annexe_get_contacteur_longer_C() == CONTACTEUR_INACTIF){
|
|
|
|
if(i2c_annexe_get_contacteur_longer_A() == CONTACTEUR_INACTIF){
|
|
|
|
etat_accostage = CERISE_AVANCE_DROIT;
|
|
|
|
}else{
|
|
|
|
etat_accostage = CERISE_TOURNE_CONTACTEUR_LONGER_C;
|
|
|
|
}
|
|
|
|
}else if(i2c_annexe_get_contacteur_longer_A() == CONTACTEUR_ACTIF){
|
|
|
|
etat_accostage = CERISE_ACCOSTE;
|
|
|
|
}
|
2023-03-03 18:50:44 +00:00
|
|
|
break;
|
2023-03-18 16:59:15 +00:00
|
|
|
|
|
|
|
case CERISE_ACCOSTE:
|
|
|
|
commande_vitesse_stop();
|
|
|
|
//etat_accostage = CERISE_AVANCE_DROIT;
|
|
|
|
etat_action = ACTION_TERMINEE;
|
2023-03-03 18:50:44 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return etat_action;
|
|
|
|
}
|
|
|
|
|
2023-03-16 22:27:08 +00:00
|
|
|
void commande_rotation_contacteur_longer_A(){
|
2023-03-18 16:59:15 +00:00
|
|
|
commande_rotation(-ROTATION_CERISE, RAYON_ROBOT, 0);
|
2023-03-16 22:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void commande_rotation_contacteur_longer_C(){
|
2023-03-18 16:59:15 +00:00
|
|
|
commande_rotation(ROTATION_CERISE, RAYON_ROBOT/2, -RAYON_ROBOT* RACINE_DE_3/2);
|
2023-03-16 22:27:08 +00:00
|
|
|
}
|