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.
Diff: Bertl_Bewegungen.cpp
- Revision:
- 0:78cdcb8ca467
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Bertl_Bewegungen.cpp Fri Apr 24 07:47:12 2015 +0000
@@ -0,0 +1,34 @@
+#include "Bertl_Bewegungen.h"
+
+void Bertl_Bewegungen :: TurnRight ()
+{
+ TurnLeft();
+ TurnLeft();
+ TurnLeft();
+}
+
+void Bertl_Bewegungen :: TurnAround ()
+{
+ TurnLeft();
+ TurnLeft();
+}
+
+void Bertl_Bewegungen :: Move3Boxes ()
+{
+ Move();
+ Move();
+ Move();
+}
+
+void Bertl_Bewegungen :: Move2Boxes() // Methodendefinition
+{
+ Move();
+ Move();
+}
+
+void Bertl_Bewegungen :: Move4Boxes() // Methodendefinition
+{
+ Move2Boxes();
+ Move2Boxes();
+}
+