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
main.cpp@13:060d2a90d1c5, 2018-05-22 (annotated)
- Committer:
- wengefa1
- Date:
- Tue May 22 09:25:06 2018 +0000
- Revision:
- 13:060d2a90d1c5
- Parent:
- 12:811b1364679e
optische Anpassungen zur Abgabe
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Alexander_Zuest | 0:4a0b987c5c94 | 1 | #include "mbed.h" |
Alexander_Zuest | 0:4a0b987c5c94 | 2 | #include "Controller.h" |
Alexander_Zuest | 0:4a0b987c5c94 | 3 | #include "MotorDriver.h" |
Alexander_Zuest | 0:4a0b987c5c94 | 4 | #include "ReadFinalLine.h" |
Alexander_Zuest | 0:4a0b987c5c94 | 5 | #include "ReadSensor.h" |
Alexander_Zuest | 0:4a0b987c5c94 | 6 | #include "Mapping.h" |
Alexander_Zuest | 0:4a0b987c5c94 | 7 | #include "AutoDrive.h" |
Alexander_Zuest | 0:4a0b987c5c94 | 8 | #include "RouteCalculation.h" |
Alexander_Zuest | 6:a1fd0f1374e6 | 9 | #include "ff.h" |
wengefa1 | 10:ab83197b30ee | 10 | #include "Dekoration.h" |
Alexander_Zuest | 0:4a0b987c5c94 | 11 | |
Alexander_Zuest | 0:4a0b987c5c94 | 12 | int main() |
Alexander_Zuest | 0:4a0b987c5c94 | 13 | { |
wengefa1 | 10:ab83197b30ee | 14 | wait(10); |
wengefa1 | 12:811b1364679e | 15 | |
Alexander_Zuest | 0:4a0b987c5c94 | 16 | startup(); |
wengefa1 | 13:060d2a90d1c5 | 17 | |
Alexander_Zuest | 0:4a0b987c5c94 | 18 | mapping(); |
Alexander_Zuest | 0:4a0b987c5c94 | 19 | |
Alexander_Zuest | 0:4a0b987c5c94 | 20 | } |
Alexander_Zuest | 0:4a0b987c5c94 | 21 |