Clear All Beeper To The Wall

Dependencies:   mbed ur_Bertl

main.cpp

Committer:
mpickl
Date:
2015-04-24
Revision:
1:fe621d794c6c
Parent:
0:407bebd23b26
Child:
2:9795f864acac

File content as of revision 1:fe621d794c6c:

/*
    Name: main.cpp
    Autor: Maximilian Pickl
    Datum: 23.04.2015
    Zuletzt geändert: 24.04.2015
*/

#include "mbed.h"
#include "uebungen.h"
#include "ur_Bertl.h"
#include "const.h"

int main()
{
    Task_Bertl karel;
    
    karel.LedAmpel();

    /*while(1) 
    {
        if (!karel.NextToABeeper()) 
        {
            karel.Move();
        }
        
        if (karel.NextToABeeper())
        {
            karel.PickBeeper();                 
            karel.ShutOff();
        }
    }*/
    
    //  karel.ClearAllBeeperToTheWall();
}