Compare commits

...

6 Commits

2 changed files with 29 additions and 19 deletions

9
IO.hpp
View File

@ -67,7 +67,7 @@ class IO {
pinMode(PIN_TIRETTE, INPUT_PULLUP);
pinMode(PIN_BUTTON_COLOR, INPUT_PULLUP);
m_code_cell->Motion_RotationRead(m_init_x, m_init_y, m_init_z);
initGyroscope();
m_initMotors();
m_initServo();
@ -84,6 +84,11 @@ class IO {
return nb_errors;
}
void initGyroscope()
{
m_code_cell->Motion_RotationRead(m_init_x, m_init_y, m_init_z);
}
int update()
{
static unsigned long last_color_change_time {0};
@ -122,7 +127,7 @@ class IO {
m_is_tirette_pulled = (digitalRead(PIN_TIRETTE) == HIGH);
m_is_color_blue = is_color_blue;
is_color_blue = (digitalRead(PIN_BUTTON_COLOR) == HIGH);
is_color_blue = (digitalRead(PIN_BUTTON_COLOR) == LOW);
if(m_is_motor_control_activated)
{

View File

@ -5,6 +5,10 @@
#include "IO.hpp"
#define NORMAL_SPEED 2048.0f
#define TURNING_SPEED 1500.0f
#define ON_STAGE_SPEED 1120.0f
// Unit tests activation
//#define UNIT_TESTS
@ -108,43 +112,35 @@ void loop()
case State::WaitingTimer:
static unsigned long initial_time = millis();
//if(millis() - initial_time >= 90000)
if(millis() - initial_time >= 2000)
if(millis() - initial_time >= 87000)
//if(millis() - initial_time >= 2000)
{
my_IO.initGyroscope();
actual_state = State::ForwardToRamp;
}
break;
case State::ForwardToRamp:
my_IO.motorControlOn();
my_IO.setSpeed(2048.0f);
my_IO.setSpeed(2000.0f);
if(my_IO.getAngle(Axes::Y) < -5.0f)
if(my_IO.getAngle(Axes::Y) < -8.0f)
{
actual_state = State::ForwardToScene;
}
break;
case State::ForwardToScene:
my_IO.setSpeed(2048.0f);
if(my_IO.getAngle(Axes::Y) > -5.0f)
my_IO.setSpeed(2000.0f);
if(my_IO.getAngle(Axes::Y) > -3.5f)
{
my_IO.setSpeed(1300.0f);
actual_state = my_IO.isSelectedColorBlue() ? State::Turn90Blue : State::Turn90Yellow;
//actual_state = State::Dancing;
}
break;
case State::Turn90Blue:
my_IO.setDirWithAngularSpeed(-90.0f);
if(my_IO.getAngle(Axes::Z) < -80.0f)
{
actual_state = State::ForwardToSceneEdge;
}
break;
case State::Turn90Yellow:
my_IO.setDirWithAngularSpeed(90.0f);
if(my_IO.getAngle(Axes::Z) >= 80.0f)
@ -153,10 +149,19 @@ void loop()
}
break;
case State::Turn90Yellow:
my_IO.setDirWithAngularSpeed(-90.0f);
if(my_IO.getAngle(Axes::Z) <= -80.0f)
{
actual_state = State::ForwardToSceneEdge;
}
break;
case State::ForwardToSceneEdge:
my_IO.setSpeed(1100.0f);
if(my_IO.getAngle(Axes::Y) > 5.0f)
if(my_IO.getAngle(Axes::Y) > 3.0f)
{
actual_state = State::Dancing;
}