Tobis Programm forked to not destroy your golden files
Fork of Robocode by
source/movement.cpp
- Committer:
- cittecla
- Date:
- 2017-03-05
- Revision:
- 26:58f90fa8dbaf
- Parent:
- 25:08ee4525155b
- Child:
- 27:df11ab63cda4
File content as of revision 26:58f90fa8dbaf:
/** * Movement function library * Handels Movement of the Robot **/ #include "mbed.h" #include "move.h" static double time_counter = 0.0f; static double timer0 = 0.0f; static float PID_correction_value = 1.0f; static float power_value_slow = 0.6f; static float power_value_medium = 0.7f; static float power_value_fast = 0.8f; static float ludicrous_value = 1.0f; //motor stuff DigitalOut enableMotorDriver(PB_2); PwmOut pwmL(PA_8); PwmOut pwmR(PA_9); DigitalIn motorDriverFault(PB_14); DigitalIn motorDriverWarning(PB_15); //DigitalOut led(LED1); // Board LED static int EncoderCounterLeft = 0; static int EncoderCounterRight = 0; DigitalOut led(LED1); // Board LED // Encoder Interrupt *********************************************************** void highPulseDetectedL() { EncoderCounterLeft += 1; } void highPulseDetectedR() { EncoderCounterRight += 1; } //****************************************************************************** void move_init() { pwmL.period(0.00005f); // Setzt die Periode auf 50 μs pwmR.period(0.00005f); pwmL.write(0.5f); // Setzt die Duty-Cycle auf 50% pwmR.write(0.5f); enableMotorDriver = 1; EncoderCounterLeft = 0; EncoderCounterRight = 0; PID_correction_value = 1.0f; } //****************************************************************************** void move_forward_slow(float correction_value) { pwmL.write(power_value_slow); pwmR.write(1-power_value_slow*correction_value); } void move_forward_medium(float correction_value) { pwmL = power_value_medium; pwmR = 1-power_value_medium*correction_value; } void move_backward_slow(float correction_value) { pwmL = 1-power_value_slow*correction_value; pwmR = power_value_slow; } void move_backward_medium(float correction_value) { pwmL = 1-power_value_slow*correction_value; pwmR = power_value_slow; } //****************************************************************************** void stop_movement() { pwmL = 0.5f; pwmR = 0.5f; } void sync_movement(bool speed, bool direction) { if(EncoderCounterLeft > EncoderCounterRight) { PID_correction_value += 0.0001f; } else { if(EncoderCounterLeft < EncoderCounterRight) { PID_correction_value -= 0.0001f; } else { // even } } if(PID_correction_value < 0.0f) { PID_correction_value = 0; } if(PID_correction_value > 2.0f) { PID_correction_value = 2; } // Call movement: // direction 0 = backward, direction 1 = forward // speed 0 = slow, speed 1 = medium if(direction && speed) { move_forward_medium(PID_correction_value); } if(direction && !speed) { move_forward_slow(PID_correction_value); } if(!direction && speed) { move_backward_medium(PID_correction_value); } if(!direction && !speed) { move_backward_slow(PID_correction_value); } } void terminate_movement() { PID_correction_value = 1.0f; pwmL.write(0.5f); pwmR.write(0.5f); }