Tobis Programm forked to not destroy your golden files

Dependencies:   mbed

Fork of Robocode by PES 2 - Gruppe 1

Committer:
cittecla
Date:
Mon May 01 15:26:30 2017 +0000
Revision:
89:7f9d6e641a01
Parent:
86:df8c869a5a52
Child:
94:0381e8b1beda
move_for_dist is now working

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cittecla 18:a82994e67297 1 #pragma once
cittecla 39:92723f7ea54f 2 #include "mbed.h"
cittecla 39:92723f7ea54f 3 #include "Robot.h"
cittecla 52:56399c2f13cd 4 #include "Positioning.h"
cittecla 77:ff87a10c4baf 5 #include "Grabbing.h"
cittecla 52:56399c2f13cd 6
cittecla 53:453f24775644 7 #define sqrt2 1.4142135623730950488016887242097
cittecla 89:7f9d6e641a01 8 #define wheel_r 0.0395 //radius in
cittecla 18:a82994e67297 9
cittecla 39:92723f7ea54f 10 int moving();
cittecla 85:d8ea8a99fa3a 11 float move_for_distance(float distance);
cittecla 75:dba260cb5ae4 12 float turn_for_deg(float deg); //returns left deg for turning
cittecla 86:df8c869a5a52 13 void stop_move();
cittecla 86:df8c869a5a52 14 void stop_turn();
cittecla 39:92723f7ea54f 15 int move_to_next_coord();
cittecla 54:36c290715769 16 int move_in_search_for_brick();