Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of Robocode by
source/movement.cpp
- Committer:
- cittecla
- Date:
- 2017-03-02
- Revision:
- 18:a82994e67297
- Child:
- 19:baa8371d55b4
File content as of revision 18:a82994e67297:
/**
* Movement function library
* Handels Movement of the Robot
**/
#include "mbed.h"
double time_counter = 0.0f;
double deltatime = 0.0f;
void move_init()
{
}
void move_forward_slow()
{
}
void move_forward_medium()
{
}
void move_forward_fast()
{
}
void move_backward_slow()
{
}
void move_forward_slow()
{
}
void move_forward_slow()
{
}
