Matthias Dorudi
/
FollowLine
FollowLine
Meine Projekte
Dieses Projekt habe ich im Sommersemester 2015 in FSST programmiert.
Projekte
Diff: main.cpp
- Revision:
- 0:14e92501b8ad
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu May 07 11:44:19 2015 +0000 @@ -0,0 +1,31 @@ +#include "mbed.h" +#include "ur_Bertl.h" +#include "const.h" + +Serial bt(p9,vp10); + +int main(){ + + Bertl tom; + + while(true){ + int a = 5; + bt.printf("Hello World %d \n",a); + wait(1); + } + + while(1){ + + uint8_t val = tom.GetLineValues(); // Definition und Zuweisung des Wertes an val + + tom.NibbleLeds(val); // Anzeigen des Werts der Variable val an den 4 gelben Leds + + if (val == 6 || val == 3 || val == 2 || val == 1 || val == 4 || val == 12 || val == 8){ + tom.Move(20); + } + + if (val == 0){ + tom.TurnLeftStep(5); + } + } +} \ No newline at end of file